Home
last modified time | relevance | path

Searched refs:Uint32 (Results 1 – 25 of 137) sorted by relevance

123456

/third_party/node/src/
Dnode_wasi.cc87 using v8::Uint32;
258 CHECK_TO_TYPE_OR_RETURN(args, args[0], Uint32, argv_offset); in ArgsGet()
259 CHECK_TO_TYPE_OR_RETURN(args, args[1], Uint32, argv_buf_offset); in ArgsGet()
297 CHECK_TO_TYPE_OR_RETURN(args, args[0], Uint32, argc_offset); in ArgsSizesGet()
298 CHECK_TO_TYPE_OR_RETURN(args, args[1], Uint32, argv_buf_offset); in ArgsSizesGet()
331 CHECK_TO_TYPE_OR_RETURN(args, args[0], Uint32, clock_id); in ClockResGet()
332 CHECK_TO_TYPE_OR_RETURN(args, args[1], Uint32, resolution_ptr); in ClockResGet()
359 CHECK_TO_TYPE_OR_RETURN(args, args[0], Uint32, clock_id); in ClockTimeGet()
361 CHECK_TO_TYPE_OR_RETURN(args, args[2], Uint32, time_ptr); in ClockTimeGet()
388 CHECK_TO_TYPE_OR_RETURN(args, args[0], Uint32, environ_offset); in EnvironGet()
[all …]
Dnode_blob.cc31 using v8::Uint32;
97 size_t length = args[1].As<Uint32>()->Value(); in New()
143 size_t start = args[0].As<Uint32>()->Value(); in ToSlice()
144 size_t end = args[1].As<Uint32>()->Value(); in ToSlice()
250 size_t length = args[2].As<Uint32>()->Value(); in StoreDataObject()
294 Uint32::NewFromUnsigned(env->isolate(), stored.length), in GetDataObject()
Dnode_stat_watcher.cc43 using v8::Uint32;
116 const uint32_t interval = args[1].As<Uint32>()->Value(); in Start()
Dnode_credentials.cc32 using v8::Uint32;
218 return value.As<Uint32>()->Value(); in uid_by_name()
228 return value.As<Uint32>()->Value(); in gid_by_name()
404 user = name_by_uid(args[0].As<Uint32>()->Value()); in InitGroups()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DIndexBufferValidationTests.cpp89 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 0, 256); in TEST_F()
91 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 0, wgpu::kWholeSize); in TEST_F()
92 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 256 - 4, wgpu::kWholeSize); in TEST_F()
93 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 4, wgpu::kWholeSize); in TEST_F()
95 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 256, wgpu::kWholeSize); in TEST_F()
104 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 4, 256); in TEST_F()
113 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 256 + 4, 0); in TEST_F()
126 encoder.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 0, 256); in TEST_F()
128 encoder.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 0, wgpu::kWholeSize); in TEST_F()
129 encoder.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32, 256 - 4, wgpu::kWholeSize); in TEST_F()
[all …]
DDrawVertexAndIndexBufferOOBValidationTests.cpp276 {wgpu::IndexFormat::Uint32, 12 * sizeof(uint32_t), 0, wgpu::kWholeSize, 12},
277 {wgpu::IndexFormat::Uint32, 13 * sizeof(uint32_t), sizeof(uint32_t), wgpu::kWholeSize,
279 {wgpu::IndexFormat::Uint32, 13 * sizeof(uint32_t), 0, 12 * sizeof(uint32_t), 12},
280 {wgpu::IndexFormat::Uint32, 14 * sizeof(uint32_t), sizeof(uint32_t),
437 IndexBufferDesc indexBufferDesc = {indexBuffer, wgpu::IndexFormat::Uint32}; in TEST_F()
497 auto indexFormat = wgpu::IndexFormat::Uint32; in TEST_F()
579 auto indexFormat = wgpu::IndexFormat::Uint32; in TEST_F()
612 wgpu::IndexFormat indexFormat = wgpu::IndexFormat::Uint32; in TEST_F()
DResourceUsageTrackingTests.cpp91 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32); in TEST_F()
135 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32); in TEST_F()
241 pass0.SetIndexBuffer(buffer0, wgpu::IndexFormat::Uint32); in TEST_F()
246 pass1.SetIndexBuffer(buffer1, wgpu::IndexFormat::Uint32); in TEST_F()
332 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32); in TEST_F()
399 pass.SetIndexBuffer(buffer, wgpu::IndexFormat::Uint32); in TEST_F()
503 pass.SetIndexBuffer(buffer0, wgpu::IndexFormat::Uint32); in TEST_F()
504 pass.SetIndexBuffer(buffer1, wgpu::IndexFormat::Uint32); in TEST_F()
515 pass.SetIndexBuffer(buffer1, wgpu::IndexFormat::Uint32); in TEST_F()
516 pass.SetIndexBuffer(buffer0, wgpu::IndexFormat::Uint32); in TEST_F()
[all …]
/third_party/vixl/src/
Dutils-vixl.h966 class Uint32 {
971 Uint32() { data_ = 0; }
972 explicit Uint32(uint32_t data) : data_(data) {}
973 inline explicit Uint32(Uint64 data);
980 Uint32 operator~() const { return Uint32(~data_); }
981 Uint32 operator-() const { return Uint32(-data_); }
982 bool operator==(Uint32 value) const { return data_ == value.data_; }
983 bool operator!=(Uint32 value) const { return data_ != value.data_; }
984 bool operator>(Uint32 value) const { return data_ > value.data_; }
985 Uint32 operator+(Uint32 value) const { return Uint32(data_ + value.data_); }
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DIndexFormatTests.cpp70 TEST_P(IndexFormatTest, Uint32) { in TEST_P() argument
71 wgpu::RenderPipeline pipeline = MakeTestPipeline(wgpu::IndexFormat::Uint32); in TEST_P()
86 pass.SetIndexBuffer(indexBuffer, wgpu::IndexFormat::Uint32); in TEST_P()
128 wgpu::RenderPipeline pipeline32 = MakeTestPipeline(wgpu::IndexFormat::Uint32); in TEST_P()
144 pass.SetIndexBuffer(indexBuffer, wgpu::IndexFormat::Uint32); in TEST_P()
160 wgpu::RenderPipeline pipeline = MakeTestPipeline(wgpu::IndexFormat::Uint32); in TEST_P()
171 pass.SetIndexBuffer(indexBuffer, wgpu::IndexFormat::Uint32); in TEST_P()
201 pass.SetIndexBuffer(indexBuffer32, wgpu::IndexFormat::Uint32); in TEST_P()
261 wgpu::RenderPipeline pipeline = MakeTestPipeline(wgpu::IndexFormat::Uint32); in TEST_P()
280 pass.SetIndexBuffer(indexBuffer, wgpu::IndexFormat::Uint32); in TEST_P()
[all …]
DDrawIndexedIndirectTests.cpp45 descriptor.primitive.stripIndexFormat = wgpu::IndexFormat::Uint32; in SetUp()
89 pass.SetIndexBuffer(indexBuffer, wgpu::IndexFormat::Uint32, indexOffset); in EncodeDrawCommands()
119 TEST_P(DrawIndexedIndirectTest, Uint32) { in TEST_P() argument
287 pass.SetIndexBuffer(CreateIndexBuffer({0, 1, 2, 0, 3, 1}), wgpu::IndexFormat::Uint32, 0); in TEST_P()
309 pass.SetIndexBuffer(CreateIndexBuffer({0, 1, 2, 0, 3, 1}), wgpu::IndexFormat::Uint32, 0); in TEST_P()
311 pass.SetIndexBuffer(CreateIndexBuffer({0, 3, 1, 0, 2, 1}), wgpu::IndexFormat::Uint32, 0); in TEST_P()
314 wgpu::IndexFormat::Uint32, 0); in TEST_P()
331 pass.SetIndexBuffer(CreateIndexBuffer({0, 1, 2, 0, 3, 1}), wgpu::IndexFormat::Uint32, 0); in TEST_P()
349 pass.SetIndexBuffer(CreateIndexBuffer({0, 1, 2, 0, 3, 1}), wgpu::IndexFormat::Uint32, 0); in TEST_P()
351 pass.SetIndexBuffer(CreateIndexBuffer({0, 1, 2, 0, 3, 1}), wgpu::IndexFormat::Uint32, 0); in TEST_P()
[all …]
DDrawIndexedTests.cpp44 descriptor.primitive.stripIndexFormat = wgpu::IndexFormat::Uint32; in SetUp()
112 pass.SetIndexBuffer(curIndexBuffer, wgpu::IndexFormat::Uint32, bufferOffset); in TestImplementation()
126 TEST_P(DrawIndexedTest, Uint32) { in TEST_P() argument
DDrawIndirectTests.cpp44 descriptor.primitive.stripIndexFormat = wgpu::IndexFormat::Uint32; in SetUp()
91 TEST_P(DrawIndirectTest, Uint32) { in TEST_P() argument
/third_party/node/src/crypto/
Dcrypto_scrypt.cc17 using v8::Uint32;
91 params->N = args[offset + 2].As<Uint32>()->Value(); in AdditionalConfig()
92 params->r = args[offset + 3].As<Uint32>()->Value(); in AdditionalConfig()
93 params->p = args[offset + 4].As<Uint32>()->Value(); in AdditionalConfig()
Dcrypto_random.cc24 using v8::Uint32;
48 const uint32_t byte_offset = args[offset + 1].As<Uint32>()->Value(); in AdditionalConfig()
49 const uint32_t size = args[offset + 2].As<Uint32>()->Value(); in AdditionalConfig()
96 const uint32_t size = args[offset].As<Uint32>()->Value(); in AdditionalConfig()
Dcrypto_rsa.cc28 using v8::Uint32;
138 static_cast<RSAKeyVariant>(args[*offset].As<Uint32>()->Value()); in AdditionalConfig()
145 params->params.modulus_bits = args[*offset + 1].As<Uint32>()->Value(); in AdditionalConfig()
146 params->params.exponent = args[*offset + 2].As<Uint32>()->Value(); in AdditionalConfig()
257 static_cast<RSAKeyVariant>(args[offset].As<Uint32>()->Value()); in AdditionalConfig()
311 static_cast<RSAKeyVariant>(args[offset].As<Uint32>()->Value()); in AdditionalConfig()
Dcrypto_keygen.cc20 using v8::Uint32;
66 uint32_t bits = args[*offset].As<Uint32>()->Value(); in AdditionalConfig()
Dcrypto_dsa.cc36 using v8::Uint32;
89 params->params.modulus_bits = args[*offset].As<Uint32>()->Value(); in AdditionalConfig()
Dcrypto_hkdf.cc16 using v8::Uint32;
89 params->length = args[offset + 4].As<Uint32>()->Value(); in AdditionalConfig()
Dcrypto_aes.cc25 using v8::Uint32;
366 params->length = value.As<Uint32>()->Value(); in ValidateCounter()
403 params->length = value.As<Uint32>()->Value(); in ValidateAuthTag()
477 static_cast<AESKeyVariant>(args[offset].As<Uint32>()->Value()); in AdditionalConfig()
/third_party/node/deps/v8/src/codegen/
Dinterface-descriptors.h1884 DEFINE_PARAMETER_TYPES(MachineType::Uint32(), // kLow
1885 MachineType::Uint32()) // kHigh
1902 DEFINE_RESULT_AND_PARAMETER_TYPES(MachineType::Uint32(), // result 1
1903 MachineType::Uint32(), // result 2
1913 DEFINE_RESULT_AND_PARAMETER_TYPES(MachineType::Uint32(), // result 1
1914 MachineType::Uint32(), // kAddress
1916 MachineType::Uint32(), // kTimeoutLow
1917 MachineType::Uint32()) // kTimeoutHigh
1930 MachineType::Uint32(), // result 1
1931 MachineType::Uint32(), // kAddress
[all …]
Dmachine-type.h161 return (kSystemPointerSize == 4) ? Uint32() : Uint64(); in UintPtr()
182 constexpr static MachineType Uint32() { in Uint32() function
252 return isSigned ? MachineType::Int32() : MachineType::Uint32();
287 return MachineType::Uint32(); in TypeForCType()
/third_party/node/deps/v8/include/
Dv8-value.h25 class Uint32; variable
386 V8_WARN_UNUSED_RESULT MaybeLocal<Uint32> ToUint32(
404 V8_WARN_UNUSED_RESULT MaybeLocal<Uint32> ToArrayIndex(
/third_party/node/benchmark/napi/function_args/
Dbinding.cc17 using v8::Uint32;
117 int32_t loop = args[0].As<Uint32>()->Value(); in CallWithArguments()
121 args[i].As<Uint32>()->Value(); in CallWithArguments()
/third_party/node/test/js-native-api/test_number/
Dtest_null.c48 BINDING_FOR_CREATE(Uint32, uint32) in BINDING_FOR_CREATE()
52 BINDING_FOR_GET_VALUE(Uint32, uint32) in BINDING_FOR_CREATE()
/third_party/vixl/src/aarch32/
Ddisasm-aarch32.cc48 using internal::Uint32;
7092 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x2)) && in DecodeT32()
7102 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x2)) && in DecodeT32()
7112 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x0)) && in DecodeT32()
7121 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x0)) && in DecodeT32()
7130 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x1)) && in DecodeT32()
7140 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x1)) && in DecodeT32()
8298 (BitCount(Uint32(mask)) != 1))) { in DecodeT32()
9200 if (((((Uint32((instr >> 26)) & Uint32(0x1)) in DecodeT32()
9202 ((Uint32((instr >> 12)) & Uint32(0x7)) in DecodeT32()
[all …]

123456