Searched refs:kMaxUInt32 (Results 1 – 25 of 27) sorted by relevance
12
/external/v8/src/ |
D | lookup.h | 71 index_(kMaxUInt32), in configuration_() 97 DCHECK_NE(kMaxUInt32, index_); in configuration_() 152 bool IsElement() const { return index_ != kMaxUInt32; } in IsElement() 343 Isolate* isolate, Handle<Object> receiver, uint32_t index = kMaxUInt32); 346 uint32_t index = kMaxUInt32) {
|
D | fixed-dtoa.cc | 295 const uint32_t kMaxUInt32 = 0xFFFFFFFF; in FastFixedDtoa() local 355 if (integrals > kMaxUInt32) { in FastFixedDtoa()
|
D | elements.cc | 625 index, filter) != kMaxUInt32; in HasElementImpl() 1051 if (entry == kMaxUInt32) continue; in CollectValuesOrEntriesImpl() 1081 if (entry == kMaxUInt32) continue; in CollectValuesOrEntriesImpl() 1282 : kMaxUInt32; in GetEntryForIndexImpl() 1284 return index < length ? index : kMaxUInt32; in GetEntryForIndexImpl() 1510 if (entry == SeededNumberDictionary::kNotFound) return kMaxUInt32; in GetEntryForIndexImpl() 1514 if ((attr & filter) != 0) return kMaxUInt32; in GetEntryForIndexImpl() 1532 DCHECK_LE(raw_key->Number(), kMaxUInt32); in FilterKey() 1535 if ((attr & filter) != 0) return kMaxUInt32; in FilterKey() 1544 if (!dictionary->IsKey(isolate, raw_key)) return kMaxUInt32; in GetKeyForEntryImpl() [all …]
|
D | lookup.cc | 123 if (index != kMaxUInt32 && receiver->IsString() && in GetRootForNonJSReceiver() 873 if (number_ == kMaxUInt32) { in LookupInRegularHolder()
|
D | conversions-inl.h | 121 return !IsMinusZero(value) && value >= 0 && value <= kMaxUInt32 && in IsUint32Double()
|
D | json-stringifier.cc | 126 if (!length_obj->ToUint32(&length)) length = kMaxUInt32; in InitializeReplacer()
|
D | globals.h | 142 const uint32_t kMaxUInt32 = 0xFFFFFFFFu; variable
|
D | objects-inl.h | 2343 return Object::ToUint32(index) && *index != kMaxUInt32; in ToArrayIndex()
|
/external/v8/src/interpreter/ |
D | constant-array-builder.h | 43 kMaxUInt32 - k16BitCapacity - k8BitCapacity + 1;
|
D | constant-array-builder.cc | 229 return kMaxUInt32; in SINGLETON_CONSTANT_ENTRY_TYPES()
|
D | bytecode-array-writer.cc | 291 CHECK_LE(current_offset, static_cast<size_t>(kMaxUInt32)); in EmitJump()
|
D | bytecode-register-optimizer.cc | 11 const uint32_t BytecodeRegisterOptimizer::kInvalidEquivalenceId = kMaxUInt32;
|
D | bytecode-array-builder.cc | 139 return value <= kMaxUInt32; in IsValid()
|
/external/v8/src/wasm/ |
D | wasm-text.cc | 174 MemoryAccessOperand operand(&i, i.pc(), kMaxUInt32); in PrintWasmText()
|
D | wasm-module-builder.cc | 166 DCHECK_LE(body_.size(), kMaxUInt32); in AddAsmWasmOffset() 230 DCHECK_GE(kMaxUInt32, locals_.Size()); in WriteAsmWasmOffsetTable()
|
D | wasm-objects.cc | 79 CHECK_LE(num->value(), kMaxUInt32); in SafeUint32()
|
/external/v8/src/runtime/ |
D | runtime-array.cc | 508 if (!object->map()->IsSpecialReceiverMap() && len < kMaxUInt32 && in RUNTIME_FUNCTION() 606 if (!object->map()->IsSpecialReceiverMap() && len < kMaxUInt32 && in RUNTIME_FUNCTION()
|
D | runtime-regexp.cc | 1349 *out = kMaxUInt32; in ToUint32()
|
/external/v8/src/compiler/ |
D | operation-typer.cc | 885 DCHECK_LE(max, kMaxUInt32); in NumberShiftRightLogical() 888 if (min == 0 && max == kMaxUInt32) return Type::Unsigned32(); in NumberShiftRightLogical()
|
D | machine-operator-reducer.cc | 285 if (m.left().Is(kMaxUInt32)) return ReplaceBool(false); // M < x => false in Reduce() 311 if (m.right().Is(kMaxUInt32)) return ReplaceBool(true); // x <= M => true in Reduce()
|
D | types.cc | 361 {kOtherNumber, kPlainNumber, static_cast<double>(kMaxUInt32) + 1}};
|
D | wasm-compiler.cc | 3176 CHECK(effective_size <= kMaxUInt32); in BoundsCheckMem()
|
/external/v8/src/ast/ |
D | ast.cc | 593 } else if (key->ToUint32(&element_index) && element_index != kMaxUInt32) { in InitDepthAndFlags()
|
D | ast-types.cc | 353 {kOtherNumber, kPlainNumber, static_cast<double>(kMaxUInt32) + 1}};
|
/external/v8/src/debug/ |
D | liveedit.cc | 171 return get_cell(i1, i2) & (kMaxUInt32 ^ kDirectionMask); in get_value4()
|
12