Home
last modified time | relevance | path

Searched refs:first_position (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/source/util/
Dbitutils.h126 T MutateBits(T word, size_t first_position, size_t num_bits_to_mutate,
131 assert(first_position < word_bit_width &&
133 assert(first_position + num_bits_to_mutate <= word_bit_width &&
140 const size_t num_unaffected_low_bits = first_position;
145 word_bit_width - (first_position + num_bits_to_mutate);
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/util/
Dbitutils.h126 T MutateBits(T word, size_t first_position, size_t num_bits_to_mutate,
131 assert(first_position < word_bit_width &&
133 assert(first_position + num_bits_to_mutate <= word_bit_width &&
140 const size_t num_unaffected_low_bits = first_position;
145 word_bit_width - (first_position + num_bits_to_mutate);
/external/deqp-deps/SPIRV-Tools/source/util/
Dbitutils.h126 T MutateBits(T word, size_t first_position, size_t num_bits_to_mutate,
131 assert(first_position < word_bit_width &&
133 assert(first_position + num_bits_to_mutate <= word_bit_width &&
140 const size_t num_unaffected_low_bits = first_position;
145 word_bit_width - (first_position + num_bits_to_mutate);
/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Darguments.cc30 std::string GetNextWord(const std::string& code, size_t first_position) { in GetNextWord() argument
31 size_t pos = first_position; in GetNextWord()
37 return code.substr(first_position, pos - first_position); in GetNextWord()
/external/rust/crates/form_urlencoded/src/
Dlib.rs74 Some(first_position) => { in replace_plus()
76 replaced[first_position] = b' '; in replace_plus()
77 for byte in &mut replaced[first_position + 1..] { in replace_plus()
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
Dcl_arguments.cc57 std::string GetNextWord(const std::string& code, size_t first_position) { in GetNextWord() argument
58 size_t pos = first_position; in GetNextWord()
64 return code.substr(first_position, pos - first_position); in GetNextWord()
/external/tensorflow/tensorflow/lite/delegates/gpu/metal/
Dmetal_arguments.cc52 std::string GetNextWord(const std::string& code, size_t first_position) { in GetNextWord() argument
53 size_t pos = first_position; in GetNextWord()
59 return code.substr(first_position, pos - first_position); in GetNextWord()