Home
last modified time | relevance | path

Searched refs:NULL_INDEX (Results 1 – 25 of 39) sorted by relevance

12

/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/mobi/reader/
H A Dheaders.py20 NULL_INDEX = 0xffffffff variable
60 if co < NULL_INDEX:
183 if self.kf8_header == NULL_INDEX:
268 self.ncxidx = NULL_INDEX
284 self.fdstidx = NULL_INDEX
287 NULL_INDEX
304 if (self.mobi_version == 8 and getattr(self, 'skelidx', NULL_INDEX) !=
305 NULL_INDEX):
H A Dncx.py13 from calibre.ebooks.mobi.reader.headers import NULL_INDEX
56 if index != NULL_INDEX:
H A Dmobi8.py16 from calibre.ebooks.mobi.reader.headers import NULL_INDEX
69 if first_resource_index in {-1, NULL_INDEX}:
120 if self.header.fdstidx != NULL_INDEX:
130 if self.header.skelidx != NULL_INDEX:
142 if self.header.dividx != NULL_INDEX:
152 if self.header.othidx != NULL_INDEX:
367 if so not in {None, NULL_INDEX} and not has_start:
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/mobi/debug/
H A Dheaders.py12 from calibre.ebooks.mobi.reader.headers import NULL_INDEX
251 if ans == NULL_INDEX:
362 self.fdst_idx = NULL_INDEX
384 if self.meta_orth_indx not in {NULL_INDEX, self.sect_idx}:
396 if hasattr(self, x) and getattr(self, x) != NULL_INDEX:
401 …r = min(getattr(self, 'first_non_book_record', NULL_INDEX), getattr(self, 'first_image_index', NUL…
402 if pointer != NULL_INDEX:
404 self.last_resource_record = NULL_INDEX
424 x = 'NULL' if x == NULL_INDEX else x
429 if attr in self.relative_records and x != NULL_INDEX:
H A Dindex.py13 from calibre.ebooks.mobi.reader.headers import NULL_INDEX
94 if idx != NULL_INDEX:
H A Dmobi6.py14 from calibre.ebooks.mobi.reader.headers import NULL_INDEX
737 pir = getattr(self.mobi_header, 'primary_index_record', NULL_INDEX)
738 if pir != NULL_INDEX:
750 if sir != NULL_INDEX:
H A Dmobi8.py18 from calibre.ebooks.mobi.reader.headers import NULL_INDEX
110 if self.header.fdst_idx != NULL_INDEX:
/dports/games/ecwolf/ecwolf-1.3.3-src/src/
H A Dw_wad.cpp61 #define NULL_INDEX (0xffffffff) macro
519 while (i != NULL_INDEX) in CheckNumForName()
537 return i != NULL_INDEX ? i : -1; in CheckNumForName()
561 while (i != NULL_INDEX && in CheckNumForName()
569 return i != NULL_INDEX ? i : -1; in CheckNumForName()
614 while (i != NULL_INDEX && stricmp(name, LumpInfo[i].lump->FullName)) in CheckNumForFullName()
619 if (i != NULL_INDEX) return i; in CheckNumForFullName()
639 while (i != NULL_INDEX && in CheckNumForFullName()
645 return i != NULL_INDEX ? i : -1; in CheckNumForFullName()
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/drawing/
H A DDrawing.String.cpp178 constexpr size_t NULL_INDEX = std::numeric_limits<size_t>::max(); in gfx_wrap_string() local
183 size_t splitIndex = NULL_INDEX; in gfx_wrap_string()
184 size_t bestSplitIndex = NULL_INDEX; in gfx_wrap_string()
201 … if (lineWidth <= width || (splitIndex == NULL_INDEX && bestSplitIndex == NULL_INDEX)) in gfx_wrap_string()
208 else if (splitIndex == NULL_INDEX) in gfx_wrap_string()
217 if (splitIndex == NULL_INDEX) in gfx_wrap_string()
229 splitIndex = NULL_INDEX; in gfx_wrap_string()
230 bestSplitIndex = NULL_INDEX; in gfx_wrap_string()
249 splitIndex = NULL_INDEX; in gfx_wrap_string()
250 bestSplitIndex = NULL_INDEX; in gfx_wrap_string()
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/mobi/writer8/
H A Dmobi.py19 NULL_INDEX = 0xffffffff variable
245 self.guide_index = NULL_INDEX
249 self.ncx_index = NULL_INDEX
259 self.first_resource_record = NULL_INDEX
/dports/devel/folly/folly-2021.12.27.00/folly/experimental/flat_combining/
H A DFlatCombining.h210 recs_(NULL_INDEX),
235 for (size_t i = getRecsHead(); i != NULL_INDEX; i = nextIndex(i)) { in drainAll()
339 if (idx == NULL_INDEX) { in allocRec()
369 const size_t NULL_INDEX = 0;
593 while (idx != NULL_INDEX) { in combiningPass()
/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/primitives/
H A Dtransaction.h32 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
34 COutPoint(): n(NULL_INDEX) { }
39 void SetNull() { hash.SetNull(); n = NULL_INDEX; }
40 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); }
/dports/net-p2p/bitcoin/bitcoin-22.0/src/primitives/
H A Dtransaction.h32 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
34 COutPoint(): n(NULL_INDEX) { } in COutPoint()
39 void SetNull() { hash.SetNull(); n = NULL_INDEX; } in SetNull()
40 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } in IsNull()
/dports/net-p2p/bitcoin-daemon/bitcoin-22.0/src/primitives/
H A Dtransaction.h32 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
34 COutPoint(): n(NULL_INDEX) { } in COutPoint()
39 void SetNull() { hash.SetNull(); n = NULL_INDEX; } in SetNull()
40 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } in IsNull()
/dports/net-p2p/litecoin-daemon/litecoin-0.18.1/src/primitives/
H A Dtransaction.h24 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
26 COutPoint(): n(NULL_INDEX) { } in COutPoint()
37 void SetNull() { hash.SetNull(); n = NULL_INDEX; } in SetNull()
38 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } in IsNull()
/dports/net-p2p/litecoin-utils/litecoin-0.18.1/src/primitives/
H A Dtransaction.h24 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
26 COutPoint(): n(NULL_INDEX) { } in COutPoint()
37 void SetNull() { hash.SetNull(); n = NULL_INDEX; } in SetNull()
38 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } in IsNull()
/dports/net-p2p/litecoin/litecoin-0.18.1/src/primitives/
H A Dtransaction.h24 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
26 COutPoint(): n(NULL_INDEX) { } in COutPoint()
37 void SetNull() { hash.SetNull(); n = NULL_INDEX; } in SetNull()
38 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } in IsNull()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/primitives/
H A Dtransaction.h24 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
26 COutPoint(): n(NULL_INDEX) { } in COutPoint()
37 void SetNull() { hash.SetNull(); n = NULL_INDEX; } in SetNull()
38 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } in IsNull()
/dports/net-p2p/namecoin/namecoin-core-nc0.21.0.1/src/primitives/
H A Dtransaction.h32 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
34 COutPoint(): n(NULL_INDEX) { } in COutPoint()
39 void SetNull() { hash.SetNull(); n = NULL_INDEX; } in SetNull()
40 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } in IsNull()
/dports/net-p2p/namecoin-daemon/namecoin-core-nc0.21.0.1/src/primitives/
H A Dtransaction.h32 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
34 COutPoint(): n(NULL_INDEX) { } in COutPoint()
39 void SetNull() { hash.SetNull(); n = NULL_INDEX; } in SetNull()
40 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } in IsNull()
/dports/net-p2p/namecoin-utils/namecoin-core-nc0.21.0.1/src/primitives/
H A Dtransaction.h32 static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
34 COutPoint(): n(NULL_INDEX) { } in COutPoint()
39 void SetNull() { hash.SetNull(); n = NULL_INDEX; } in SetNull()
40 bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } in IsNull()
/dports/games/zdoom/zdoom-2.8.1/src/
H A Dw_wad.cpp63 #define NULL_INDEX (0xffffffff) macro
451 while (i != NULL_INDEX) in CheckNumForName()
469 return i != NULL_INDEX ? i : -1; in CheckNumForName()
493 while (i != NULL_INDEX && in CheckNumForName()
501 return i != NULL_INDEX ? i : -1; in CheckNumForName()
546 while (i != NULL_INDEX && stricmp(name, LumpInfo[i].lump->FullName)) in CheckNumForFullName()
551 if (i != NULL_INDEX) return i; in CheckNumForFullName()
571 while (i != NULL_INDEX && in CheckNumForFullName()
577 return i != NULL_INDEX ? i : -1; in CheckNumForFullName()
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/mobi/writer2/
H A Dmain.py25 NULL_INDEX = 0xffffffff variable
433 header_fields['ncx_index'] = NULL_INDEX
436 header_fields[x+'_index'] = NULL_INDEX
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/
H A Dp_setup.c453 if( ldef->sidenum[side] == NULL_INDEX ) in P_LoadSegs()
462 if( ldef-> flags & ML_TWOSIDED && (ldef->sidenum[side^1] != NULL_INDEX) ) in P_LoadSegs()
956 if( ld->sidenum[0] == NULL_INDEX ) in P_LoadLineDefs()
967 if( ld->sidenum[1] == NULL_INDEX ) in P_LoadLineDefs()
986 if (ld->sidenum[0] != NULL_INDEX && ld->special) in P_LoadLineDefs()
1000 if (ld->sidenum[0] != NULL_INDEX) in P_LoadLineDefs2()
1005 if (ld->sidenum[1] != NULL_INDEX) in P_LoadLineDefs2()
H A Dr_defs.h133 #define NULL_INDEX 0xFFFF macro

12