Home
last modified time | relevance | path

Searched refs:u32s (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/ring/src/aead/
Dcounter.rs27 u32s: [U32; COUNTER_LEN], field
57 u32s: [U32::ZERO; COUNTER_LEN], in new()
60 (&mut r.u32s[nonce_index..][..3]) in new()
67 r.u32s[U32::COUNTER_INDEX] = U32::from(initial_counter); in new()
73 let current = Self { u32s: self.u32s }; in increment()
80 let counter = &mut self.u32s[U32::COUNTER_INDEX]; in increment_by_less_safe()
103 Iv::assume_unique_for_key(*self.u32s.as_byte_array()) in into()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dprng.cc131 XlaOp Uint32sToUint64(std::array<XlaOp, 2> u32s) { in Uint32sToUint64() argument
132 XlaBuilder* builder = u32s[0].builder(); in Uint32sToUint64()
133 return ConvertElementType(u32s[0], U64) | in Uint32sToUint64()
134 ShiftLeft(ConvertElementType(u32s[1], U64), in Uint32sToUint64()
352 std::array<XlaOp, 2> Uint32sToUint128(const std::array<XlaOp, 4>& u32s) { in Uint32sToUint128() argument
353 return {Uint32sToUint64({u32s[0], u32s[1]}), in Uint32sToUint128()
354 Uint32sToUint64({u32s[2], u32s[3]})}; in Uint32sToUint128()
/external/pigweed/pw_protobuf/
Dencoder_fuzzer.cc138 std::vector<uint32_t> u32s; in LLVMFuzzerTestOneInput() local
165 ConsumeSpan<uint32_t>(&provider, &u32s)); in LLVMFuzzerTestOneInput()
217 ConsumeSpan<uint32_t>(&provider, &u32s)); in LLVMFuzzerTestOneInput()
/external/tensorflow/tensorflow/compiler/xla/
Dxla_data.proto402 repeated uint32 u32s = 6; field
Dliteral.cc2160 TF_RETURN_IF_ERROR(CopyFromRepeatedField(data<uint32>(), proto.u32s())); in CopyFromProto()