Home
last modified time | relevance | path

Searched refs:Uint64 (Results 1 - 25 of 36) sorted by relevance

12

/third_party/vixl/src/
H A Dutils-vixl.h992 class Uint64;
1002 inline explicit Uint32(Uint64 data);
1057 class Uint64 {
1061 // Unlike uint64_t, Uint64 has a default constructor.
1062 Uint64() { data_ = 0; }
1063 explicit Uint64(uint64_t data) : data_(data) {}
1064 explicit Uint64(Uint32 data) : data_(data.Get()) {}
1065 inline explicit Uint64(Uint128 data);
1077 Uint64 operator~() const { return Uint64(~data
1179 Uint64::Uint64(Uint128 data) : data_(data.ToUint64().Get()) {} Uint64() function in Uint64
[all...]
/third_party/node/src/
H A Dnode_wasi.cc360 UNWRAP_BIGINT_OR_RETURN(args, args[1], Uint64, precision); in ClockTimeGet()
465 UNWRAP_BIGINT_OR_RETURN(args, args[1], Uint64, offset); in FdAdvise()
466 UNWRAP_BIGINT_OR_RETURN(args, args[2], Uint64, len); in FdAdvise()
482 UNWRAP_BIGINT_OR_RETURN(args, args[1], Uint64, offset); in FdAllocate()
483 UNWRAP_BIGINT_OR_RETURN(args, args[2], Uint64, len); in FdAllocate()
559 UNWRAP_BIGINT_OR_RETURN(args, args[1], Uint64, fs_rights_base); in FdFdstatSetRights()
560 UNWRAP_BIGINT_OR_RETURN(args, args[2], Uint64, fs_rights_inheriting); in FdFdstatSetRights()
604 UNWRAP_BIGINT_OR_RETURN(args, args[1], Uint64, st_size); in FdFilestatSetSize()
620 UNWRAP_BIGINT_OR_RETURN(args, args[1], Uint64, st_atim); in FdFilestatSetTimes()
621 UNWRAP_BIGINT_OR_RETURN(args, args[2], Uint64, st_mti in FdFilestatSetTimes()
[all...]
/third_party/node/deps/v8/src/codegen/
H A Dmachine-type.h161 return (kSystemPointerSize == 4) ? Uint32() : Uint64(); in UintPtr()
189 constexpr static MachineType Uint64() { in Uint64() function in v8::internal::MachineRepresentation::MachineType
254 return isSigned ? MachineType::Int64() : MachineType::Uint64(); in TypeForRepresentation()
296 return MachineType::Uint64(); in TypeForCType()
H A Dtnode.h77 static constexpr MachineType kMachineType = MachineType::Uint64();
/third_party/skia/third_party/externals/imgui/backends/
H A Dimgui_impl_sdl.cpp75 Uint64 Time;
439 static Uint64 frequency = SDL_GetPerformanceFrequency(); in ImGui_ImplSDL2_NewFrame()
440 Uint64 current_time = SDL_GetPerformanceCounter(); in ImGui_ImplSDL2_NewFrame()
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
H A Dbit_cast_test.cc80 TEST(BitCast, Uint64) { in TEST()
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DGPBUtil.php260 public static function Uint64($value) function
262 return new Uint64($value);
H A DCodedInputStream.php35 use Google\Protobuf\Internal\Uint64;
144 * Read Uint64 into $var. Advance buffer with consumed bytes.
/third_party/glslang/gtests/
H A DCommon.cpp152 TEST(IntLog2, Uint64) { in TEST()
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DFieldDescriptor.cs175 case FieldDescriptorProto.Types.Type.Uint64: in GetFieldTypeFromProtoType()
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/run_testlist/
H A Dmain.go59 maxProcMemory = flag.Uint64("max-proc-mem", shell.MaxProcMemory, "maximum virtual memory per child process")
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dendian_test.cc156 TEST(EndianessTest, Uint64) { in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h100 Uint64, member in llvm::ms_demangle::PrimitiveKind
/third_party/node/deps/v8/src/compiler/
H A Dint64-lowering.cc963 if (params.representation() == MachineType::Uint64()) { in LowerNode()
992 if (type == MachineType::Uint64()) { \ in LowerNode()
1008 if (type == MachineType::Uint64()) { in LowerNode()
H A Dwasm-compiler.cc1938 return MachineType::Uint64(); in IntConvertType()
5209 CASE(I64AtomicAdd, kOneInput, Uint64, Word64AtomicAdd) in AtomicOp()
5216 CASE(I64AtomicSub, kOneInput, Uint64, Word64AtomicSub) in AtomicOp()
5223 CASE(I64AtomicAnd, kOneInput, Uint64, Word64AtomicAnd) in AtomicOp()
5230 CASE(I64AtomicOr, kOneInput, Uint64, Word64AtomicOr) in AtomicOp()
5237 CASE(I64AtomicXor, kOneInput, Uint64, Word64AtomicXor) in AtomicOp()
5244 CASE(I64AtomicExchange, kOneInput, Uint64, Word64AtomicExchange) in AtomicOp()
5254 CASE(I64AtomicCompareExchange, kTwoInputs, Uint64, in AtomicOp()
5270 CASE_LOAD_STORE(I64AtomicLoad, kNoInput, Uint64, Word64AtomicLoad, in AtomicOp()
5286 CASE_LOAD_STORE(I64AtomicStore, kOneInput, Uint64, Word64AtomicStor in AtomicOp()
[all...]
H A Draw-machine-assembler.h250 // This uses Uint64() intentionally: AtomicLoad is not implemented for in AtomicLoad64()
295 /* This uses Uint64() intentionally: Atomic operations are not */ \
298 return AddNode(machine()->Word64Atomic##name(MachineType::Uint64()), \
327 // This uses Uint64() intentionally: AtomicCompareExchange is not in AtomicCompareExchange64()
331 machine()->Word64AtomicCompareExchange(MachineType::Uint64()), base, in AtomicCompareExchange64()
/third_party/node/deps/v8/src/compiler/backend/ppc/
H A Dinstruction-selector-ppc.cc2041 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicExchange()
2102 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicCompareExchange()
2137 } else if (type == MachineType::Uint64()) { in VisitAtomicBinaryOperation()
2179 kPPC_Atomic##op##Int64, kPPC_Atomic##op##Uint64); \
2186 kPPC_Atomic##op##Int64, kPPC_Atomic##op##Uint64); \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp140 OUTPUT_ENUM_CLASS_VALUE(PrimitiveKind, Uint64, "unsigned __int64"); in outputPre()
/third_party/node/deps/v8/src/wasm/
H A Dfunction-body-decoder-impl.h66 V(I64AtomicWait, Uint64) \
68 V(I64AtomicLoad, Uint64) \
77 V(I64AtomicAdd, Uint64) \
82 V(I64AtomicSub, Uint64) \
89 V(I64AtomicAnd, Uint64) \
96 V(I64AtomicOr, Uint64) \
103 V(I64AtomicXor, Uint64) \
110 V(I64AtomicExchange, Uint64) \
117 V(I64AtomicCompareExchange, Uint64) \
126 V(I64AtomicStore, Uint64) \
[all...]
/third_party/node/deps/v8/src/compiler/backend/s390/
H A Dinstruction-selector-s390.cc2215 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicExchange()
2283 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicCompareExchange()
2374 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicBinaryOperation()
2386 kS390_Word64Atomic##op##Uint64); \
/third_party/node/deps/v8/src/compiler/backend/mips64/
H A Dinstruction-selector-mips64.cc2764 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicExchange()
2801 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicCompareExchange()
2854 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicBinaryOperation()
2866 kMips64Word64Atomic##op##Uint64); \
/third_party/node/deps/v8/src/compiler/backend/x64/
H A Dinstruction-selector-x64.cc2935 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicExchange()
2971 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicCompareExchange()
3024 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicBinaryOperation()
3036 kX64Word64Atomic##op##Uint64); \
/third_party/node/deps/v8/src/compiler/backend/arm64/
H A Dinstruction-selector-arm64.cc3351 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicExchange()
3387 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicCompareExchange()
3440 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicBinaryOperation()
3452 kArm64Word64Atomic##op##Uint64); \
/third_party/node/deps/v8/src/compiler/backend/loong64/
H A Dinstruction-selector-loong64.cc2508 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicExchange()
2545 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicCompareExchange()
2598 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicBinaryOperation()
2610 kLoong64Word64Atomic##op##Uint64); \
/third_party/node/deps/v8/src/compiler/backend/riscv64/
H A Dinstruction-selector-riscv64.cc2730 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicExchange()
2767 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicCompareExchange()
2820 } else if (type == MachineType::Uint64()) { in VisitWord64AtomicBinaryOperation()
2832 kRiscvWord64Atomic##op##Uint64); \

Completed in 66 milliseconds

12