Home
last modified time | relevance | path

Searched refs:ToInt32 (Results 1 - 25 of 39) sorted by relevance

12

/third_party/zlib/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs140 _current = crc32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count); in Update()
191 _current = adler32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count); in Update()
H A DGZipStream.cs166 result = gzread(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count); in Read()
210 int result = gzwrite(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count); in Write()
/third_party/protobuf/src/google/protobuf/util/internal/
H A Ddatapiece.cc117 StatusOr<int32> DataPiece::ToInt32() const { in ToInt32() function in google::protobuf::util::converter::DataPiece
289 StatusOr<int32> int_value = ToInt32(); in ToEnum()
327 return ToInt32(); in ToEnum()
H A Dobject_writer.cc45 ow->RenderInt32(name, data.ToInt32().value()); in RenderDataPieceTo()
H A Ddatapiece.h128 util::StatusOr<int32> ToInt32() const;
H A Dproto_writer.cc125 StatusOr<int32> i32 = data.ToInt32(); in WriteInt32()
135 StatusOr<int32> i32 = data.ToInt32(); in WriteSFixed32()
145 StatusOr<int32> i32 = data.ToInt32(); in WriteSInt32()
H A Ddefault_value_objectwriter.cc461 field.default_value(), &DataPiece::ToInt32, static_cast<int32>(0))); in CreateDefaultDataPieceForField()
/third_party/node/deps/v8/src/compiler/backend/
H A Dcode-generator.cc1223 Smi smi(static_cast<Address>(constant.ToInt32())); in AddTranslationForOperand()
1227 if (constant.ToInt32() == 0) { in AddTranslationForOperand()
1231 DCHECK_EQ(1, constant.ToInt32()); in AddTranslationForOperand()
1240 constant.ToInt32() == FrameStateDescriptor::kImpossibleValue); in AddTranslationForOperand()
1243 static_cast<uint32_t>(constant.ToInt32())); in AddTranslationForOperand()
1245 literal = DeoptimizationLiteral(constant.ToInt32()); in AddTranslationForOperand()
H A Dcode-generator-impl.h50 return ToConstant(instr_->InputAt(index)).ToInt32(); in InputInt32()
H A Dinstruction.h1139 int32_t ToInt32() const { in ToInt32() function in v8::internal::compiler::final
1147 if (type() == kInt32) return ToInt32(); in ToInt64()
1774 constant.ToInt32()); in AddImmediate()
1778 constant.ToInt32()); in AddImmediate()
/third_party/node/deps/v8/include/
H A Dv8-value.h393 V8_WARN_UNUSED_RESULT MaybeLocal<Int32> ToInt32(Local<Context> context) const;
418 /** Returns the equivalent of `ToInt32()->Value()`. */
/third_party/node/deps/v8/include/v8-include/
H A Dv8-value.h403 V8_WARN_UNUSED_RESULT MaybeLocal<Int32> ToInt32(Local<Context> context) const;
428 /** Returns the equivalent of `ToInt32()->Value()`. */
/third_party/node/deps/v8/src/compiler/backend/ia32/
H A Dcode-generator-ia32.cc75 return Immediate(static_cast<Address>(constant.ToInt32()), in ToImmediate()
81 return Immediate(constant.ToInt32()); in ToImmediate()
130 return Operand(base, ctant.ToInt32(), ctant.rmode()); in MemoryOperand()
150 return Operand(base, index, scale, ctant.ToInt32(), ctant.rmode()); in MemoryOperand()
168 return Operand(index, scale, ctant.ToInt32(), ctant.rmode()); in MemoryOperand()
172 return Operand(ctant.ToInt32(), ctant.rmode()); in MemoryOperand()
199 return Operand(base, ctant.ToInt32() + disp, ctant.rmode()); in NextMemoryOperand()
726 Address wasm_code = static_cast<Address>(constant.ToInt32()); in AssembleArchInstruction()
742 Address wasm_code = static_cast<Address>(constant.ToInt32()); in AssembleArchInstruction()
4144 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), in AssembleReturn()
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-sharedarraybuffer.cc203 // 6. Otherwise, let v be ? ToInt32(value). in DoWait()
210 Object::ToInt32(isolate, value)); in DoWait()
/third_party/node/deps/v8/src/objects/
H A Dobjects.h356 V8_EXPORT_PRIVATE bool ToInt32(int32_t* value);
439 // ES6 section 7.1.5 ToInt32
440 V8_WARN_UNUSED_RESULT static inline MaybeHandle<Object> ToInt32(
/third_party/node/deps/v8/src/runtime/
H A Druntime-regexp.cc917 CHECK(args[2].ToInt32(&index)); in RUNTIME_FUNCTION()
930 CHECK(args[2].ToInt32(&index)); in RUNTIME_FUNCTION()
943 CHECK(args[2].ToInt32(&index)); in RUNTIME_FUNCTION()
958 CHECK(args[2].ToInt32(&index)); in RUNTIME_FUNCTION()
H A Druntime-strings.cc203 if (!args[1].ToInt32(&array_length)) { in RUNTIME_FUNCTION()
H A Druntime-internal.cc714 CHECK(args[1].ToInt32(&radix)); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/compiler/backend/ppc/
H A Dcode-generator-ppc.cc69 return Operand(constant.ToInt32()); in InputImmediate()
836 Address wasm_code = static_cast<Address>(constant.ToInt32()); in AssembleArchInstruction()
855 Address wasm_code = static_cast<Address>(constant.ToInt32()); in AssembleArchInstruction()
4186 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleConstructFrame()
4208 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleConstructFrame()
4241 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleConstructFrame()
4299 __ mov(dst, Operand(src.ToInt32(), src.rmode())); in AssembleConstructFrame()
4303 __ mov(dst, Operand(src.ToInt32())); in AssembleConstructFrame()
/third_party/node/deps/v8/src/compiler/backend/loong64/
H A Dcode-generator-loong64.cc80 return Operand(constant.ToInt32()); in InputImmediate()
2349 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleConstructFrame()
2371 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleConstructFrame()
2395 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleConstructFrame()
2443 __ li(dst, Operand(src.ToInt32())); in AssembleConstructFrame()
/third_party/node/deps/v8/src/compiler/backend/arm/
H A Dcode-generator-arm.cc127 return Operand(constant.ToInt32(), constant.rmode()); in ToImmediate()
130 return Operand(constant.ToInt32()); in ToImmediate()
700 Address wasm_code = static_cast<Address>(constant.ToInt32()); in AssembleArchInstruction()
713 Address wasm_code = static_cast<Address>(constant.ToInt32()); in AssembleArchInstruction()
3839 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleArchInstruction()
3860 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleArchInstruction()
3890 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleArchInstruction()
/third_party/node/deps/v8/src/compiler/backend/mips/
H A Dcode-generator-mips.cc79 return Operand(constant.ToInt32()); in InputImmediate()
641 Address wasm_code = static_cast<Address>(constant.ToInt32()); in AssembleArchInstruction()
653 Address wasm_code = static_cast<Address>(constant.ToInt32()); in AssembleArchInstruction()
4100 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleConstructFrame()
4121 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleConstructFrame()
4147 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleConstructFrame()
4194 __ li(dst, Operand(src.ToInt32(), src.rmode())); in AssembleConstructFrame()
4197 __ li(dst, Operand(src.ToInt32())); in AssembleConstructFrame()
/third_party/node/deps/v8/src/compiler/backend/s390/
H A Dcode-generator-s390.cc64 return Operand(constant.ToInt32()); in InputImmediate()
3536 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleConstructFrame()
3558 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleConstructFrame()
3591 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleConstructFrame()
3638 __ mov(dst, Operand(src.ToInt32())); in AssembleConstructFrame()
/third_party/node/deps/v8/src/compiler/backend/x64/
H A Dcode-generator-x64.cc60 return Immediate(constant.ToInt32(), constant.rmode()); in ToImmediate()
62 return Immediate(constant.ToInt32()); in ToImmediate()
4815 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleReturn()
4834 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleReturn()
4872 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleReturn()
4941 int32_t value = src.ToInt32(); in AssembleMove()
5000 __ Move(dst, src.ToInt32()); in AssembleMove()
/third_party/node/deps/v8/src/compiler/backend/arm64/
H A Dcode-generator-arm64.cc216 return Operand(constant.ToInt32()); in ToImmediate()
3241 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleArchInstruction()
3262 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleArchInstruction()
3291 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleArchInstruction()

Completed in 67 milliseconds

12