Searched refs:words (Results 1 - 25 of 402) sorted by relevance

1234567891011>>

/prebuilts/ndk/current/sources/third_party/shaderc/third_party/spirv-tools/source/
H A Dinstruction.h35 // The instruction, as a sequence of 32-bit words.
37 // in words[0], as described in the SPIR-V spec.
39 // in words[0]. Subsequent elements are the result of parsing
41 std::vector<uint32_t> words; member in struct:spv_instruction_t
46 inst->words.push_back(value);
H A Did_descriptor.cpp27 // Hashes an array of words. Order of words is important.
28 uint32_t HashU32Array(const std::vector<uint32_t>& words) { argument
30 // Knuth's multiplicative hash is used to hash the words.
33 for (uint32_t i = 0; i < words.size(); ++i) {
34 val += (words[i] + i + 123) * kKnuthMulHash;
47 words_.push_back(inst.words[0]);
53 const uint32_t id = inst.words[operand.offset];
62 words_.push_back(inst.words[operand.offset + operand_word_index]);
H A Dvalidate_id.cpp105 auto type = module_.FindDef(inst->words[typeIndex]);
107 DIAG(typeIndex) << "OpMemberName Type <id> '" << inst->words[typeIndex]
112 auto member = inst->words[memberIndex];
113 auto memberCount = (uint32_t)(type->words().size() - 2);
116 << inst->words[memberIndex]
128 auto file = module_.FindDef(inst->words[fileIndex]);
130 DIAG(fileIndex) << "OpLine Target <id> '" << inst->words[fileIndex]
141 auto decoration = inst->words[decorationIndex];
144 auto target = module_.FindDef(inst->words[targetIndex]);
147 << inst->words[decorationInde
[all...]
H A Dname_mapper.cpp175 SaveName(inst.words[1], reinterpret_cast<const char*>(inst.words + 2));
183 if (inst.words[2] == SpvDecorationBuiltIn) {
185 SaveBuiltInName(inst.words[1], inst.words[3]);
197 const auto bit_width = inst.words[2];
216 if (0 == inst.words[3]) signedness = "u";
220 const auto bit_width = inst.words[2];
237 SaveName(result_id, std::string("v") + to_string(inst.words[3]) +
238 NameForId(inst.words[
[all...]
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
H A Dinstruction.h35 // The instruction, as a sequence of 32-bit words.
37 // in words[0], as described in the SPIR-V spec.
39 // in words[0]. Subsequent elements are the result of parsing
41 std::vector<uint32_t> words; member in struct:spv_instruction_t
46 inst->words.push_back(value);
H A Did_descriptor.cpp27 // Hashes an array of words. Order of words is important.
28 uint32_t HashU32Array(const std::vector<uint32_t>& words) { argument
30 // Knuth's multiplicative hash is used to hash the words.
33 for (uint32_t i = 0; i < words.size(); ++i) {
34 val += (words[i] + i + 123) * kKnuthMulHash;
47 words_.push_back(inst.words[0]);
53 const uint32_t id = inst.words[operand.offset];
62 words_.push_back(inst.words[operand.offset + operand_word_index]);
H A Dvalidate_id.cpp105 auto type = module_.FindDef(inst->words[typeIndex]);
107 DIAG(typeIndex) << "OpMemberName Type <id> '" << inst->words[typeIndex]
112 auto member = inst->words[memberIndex];
113 auto memberCount = (uint32_t)(type->words().size() - 2);
116 << inst->words[memberIndex]
128 auto file = module_.FindDef(inst->words[fileIndex]);
130 DIAG(fileIndex) << "OpLine Target <id> '" << inst->words[fileIndex]
141 auto decoration = inst->words[decorationIndex];
144 auto target = module_.FindDef(inst->words[targetIndex]);
147 << inst->words[decorationInde
[all...]
H A Dname_mapper.cpp175 SaveName(inst.words[1], reinterpret_cast<const char*>(inst.words + 2));
183 if (inst.words[2] == SpvDecorationBuiltIn) {
185 SaveBuiltInName(inst.words[1], inst.words[3]);
197 const auto bit_width = inst.words[2];
216 if (0 == inst.words[3]) signedness = "u";
220 const auto bit_width = inst.words[2];
237 SaveName(result_id, std::string("v") + to_string(inst.words[3]) +
238 NameForId(inst.words[
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
H A DAutoExpand.py26 words = self.getwords()
29 words, index, insert, line = self.state
31 words = self.getwords()
33 if not words:
38 newword = words[index]
39 index = (index + 1) % len(words)
45 self.state = words, index, curinsert, curline
60 words = []
62 # search backwards through words before
67 words
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
H A DAutoExpand.py26 words = self.getwords()
29 words, index, insert, line = self.state
31 words = self.getwords()
33 if not words:
38 newword = words[index]
39 index = (index + 1) % len(words)
45 self.state = words, index, curinsert, curline
60 words = []
62 # search backwards through words before
67 words
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
H A DAutoExpand.py26 words = self.getwords()
29 words, index, insert, line = self.state
31 words = self.getwords()
33 if not words:
38 newword = words[index]
39 index = (index + 1) % len(words)
45 self.state = words, index, curinsert, curline
60 words = []
62 # search backwards through words before
67 words
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
H A DAutoExpand.py26 words = self.getwords()
29 words, index, insert, line = self.state
31 words = self.getwords()
33 if not words:
38 newword = words[index]
39 index = (index + 1) % len(words)
45 self.state = words, index, curinsert, curline
60 words = []
62 # search backwards through words before
67 words
[all...]
/prebuilts/ndk/current/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
H A Dinstruction.cpp34 std::vector<uint32_t> words(
35 inst.words + current_payload.offset,
36 inst.words + current_payload.offset + current_payload.num_words);
37 operands_.emplace_back(current_payload.type, std::move(words));
72 const auto& words = GetOperand(index).words; local
73 assert(words.size() == 1 && "expected the operand only taking one word");
74 return words.front();
80 size += static_cast<uint32_t>(operands_[i].words.size());
89 binary->insert(binary->end(), operand.words
[all...]
H A Dcompact_ids_pass.cpp34 assert(operand->words.size() == 1);
35 uint32_t& id = operand->words[0];
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
H A Dinstruction.cpp34 std::vector<uint32_t> words(
35 inst.words + current_payload.offset,
36 inst.words + current_payload.offset + current_payload.num_words);
37 operands_.emplace_back(current_payload.type, std::move(words));
72 const auto& words = GetOperand(index).words; local
73 assert(words.size() == 1 && "expected the operand only taking one word");
74 return words.front();
80 size += static_cast<uint32_t>(operands_[i].words.size());
89 binary->insert(binary->end(), operand.words
[all...]
/prebuilts/clang/host/darwin-x86/clang-4393122/share/clang/
H A Dbash-autocomplete.sh4 local cur prev words cword flags
/prebuilts/clang/host/darwin-x86/clang-4479392/share/clang/
H A Dbash-autocomplete.sh4 local cur prev words cword flags
/prebuilts/clang/host/linux-x86/clang-4393122/share/clang/
H A Dbash-autocomplete.sh4 local cur prev words cword flags
/prebuilts/clang/host/linux-x86/clang-4479392/share/clang/
H A Dbash-autocomplete.sh4 local cur prev words cword flags
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Drlcompleter.py138 words = dir(thisobject)
139 if "__builtins__" in words:
140 words.remove("__builtins__")
143 words.append('__class__')
144 words.extend(get_class_members(thisobject.__class__))
147 for word in words:
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Drlcompleter.py138 words = dir(thisobject)
139 if "__builtins__" in words:
140 words.remove("__builtins__")
143 words.append('__class__')
144 words.extend(get_class_members(thisobject.__class__))
147 for word in words:
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Drlcompleter.py138 words = dir(thisobject)
139 if "__builtins__" in words:
140 words.remove("__builtins__")
143 words.append('__class__')
144 words.extend(get_class_members(thisobject.__class__))
147 for word in words:
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Drlcompleter.py138 words = dir(thisobject)
139 if "__builtins__" in words:
140 words.remove("__builtins__")
143 words.append('__class__')
144 words.extend(get_class_members(thisobject.__class__))
147 for word in words:
/prebuilts/go/darwin-x86/src/runtime/
H A Dmemclr_mips64x.s21 BEQ R3, words
26 words: label
/prebuilts/go/linux-x86/src/runtime/
H A Dmemclr_mips64x.s21 BEQ R3, words
26 words: label

Completed in 2383 milliseconds

1234567891011>>