HomeSort by relevance Sort by last modified time
    Searched refs:insts (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qpu_validate.c 113 vc4_qpu_validate(uint64_t *insts, uint32_t num_inst)
127 uint64_t inst = insts[i];
166 if (writes_reg(insts[j], QPU_W_VPM) ||
167 reads_reg(insts[j], QPU_R_VARY) ||
168 reads_reg(insts[j], QPU_R_UNIF) ||
169 reads_reg(insts[j], QPU_R_VPM)) {
170 fail_instr(insts[j], "last 3 instructions "
178 if (writes_reg(insts[j], 14) ||
179 reads_reg(insts[j], 14)) {
180 fail_instr(insts[j], "last 3 instructions
    [all...]
vc4_qir_live_variables.c 33 struct qinst *insts[4]; member in struct:partial_update_state
160 if (state->insts[i] &&
161 state->insts[i]->cond ==
165 state->insts[i] = inst;
182 if (state->insts[i] && state->insts[i]->cond)
183 state->insts[i] = NULL;
  /system/bt/btif/src/
btif_mce.cc 51 btmce_mas_instance_t insts[BTA_MCE_MAX_MAS_INSTANCES]; local
59 insts[i].id = evt_data->mas[i].instance_id;
60 insts[i].scn = evt_data->mas[i].scn;
61 insts[i].msg_types = evt_data->mas[i].msg_type;
62 insts[i].p_name = evt_data->mas[i].p_srv_name;
67 (bt_status_t)evt_data->status, &addr, evt_data->num_mas, insts);
  /art/tools/ahat/src/main/com/android/ahat/
ObjectsHandler.java 44 List<AhatInstance> insts = new ArrayList<AhatInstance>(); local
45 site.getObjects(heapName, className, insts);
46 Collections.sort(insts, Sort.defaultInstanceCompare(mSnapshot));
54 SubsetSelector<AhatInstance> selector = new SubsetSelector(query, OBJECTS_ID, insts);
DominatedList.java 45 List<AhatInstance> insts = new ArrayList<AhatInstance>(instances); local
46 Collections.sort(insts, Sort.defaultInstanceCompare(snapshot));
47 HeapTable.render(doc, query, id, new TableConfig(), snapshot, insts);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
module.cpp 27 std::vector<Instruction*> insts; local
30 insts.push_back(types_values_[i].get());
32 return insts;
36 std::vector<const Instruction*> insts; local
39 insts.push_back(types_values_[i].get());
41 return insts;
45 std::vector<Instruction*> insts; local
48 insts.push_back(types_values_[i].get());
50 return insts;
54 std::vector<const Instruction*> insts; local
    [all...]
mem_pass.h 99 // Add stores using |ptr_id| to |insts|
100 void AddStores(uint32_t ptr_id, std::queue<ir::Instruction*>* insts);
mem_pass.cpp 241 uint32_t ptr_id, std::queue<ir::Instruction*>* insts) {
246 AddStores(u.inst->result_id(), insts);
248 insts->push(u.inst);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/
Android.mk 194 $(call generate-file-dir,$(1)/core.insts-1.0.inc)
195 $(1)/core.insts-1.0.inc $(1)/operand.kinds-1.0.inc $(1)/glsl.std.450.insts-1.0.inc $(1)/opencl.std.insts-1.0.inc: \
204 --core-insts-output=$(1)/core.insts-1.0.inc \
205 --glsl-insts-output=$(1)/glsl.std.450.insts-1.0.inc \
206 --opencl-insts-output=$(1)/opencl.std.insts-1.0.inc
    [all...]
  /external/mesa3d/src/compiler/glsl/
lower_const_arrays_to_uniforms.cpp 48 lower_const_array_visitor(exec_list *insts, unsigned s)
50 instructions = insts;
  /frameworks/rs/rsov/compiler/spirit/
generate.py 123 def print_factory_methods(insts):
124 for inst in insts:
410 def print_all_instruction_classes(insts):
411 for inst in insts:
420 def print_opcode_enum(insts):
422 for inst in insts:
436 def print_dispatches(insts):
437 for inst in insts:
441 def print_type_inst_dispatches(insts):
442 for inst in insts
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/binutils/
disasm_test.go 138 insts, err := disassemble([]byte(tc.asm))
143 if len(insts) != len(tc.want) {
144 t.Errorf("Unexpected number of assembly instructions %d (want %d)\n", len(insts), len(tc.want))
146 for i := range insts {
147 if insts[i] != tc.want[i] {
148 t.Errorf("Expected symbol %v, got %v\n", tc.want[i], insts[i])
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/binutils/
disasm_test.go 138 insts, err := disassemble([]byte(tc.asm))
143 if len(insts) != len(tc.want) {
144 t.Errorf("Unexpected number of assembly instructions %d (want %d)\n", len(insts), len(tc.want))
146 for i := range insts {
147 if insts[i] != tc.want[i] {
148 t.Errorf("Expected symbol %v, got %v\n", tc.want[i], insts[i])
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pyassem.py 169 self.insts = []
184 insts = map(str, self.insts)
186 '\n'.join(insts))
190 self.insts.append(inst)
193 return self.insts
213 op, arg = self.insts[-1]
226 for inst in self.insts:
238 for inst in self.insts:
322 for t in self.insts:
    [all...]
  /external/python/cpython2/Lib/compiler/
pyassem.py 169 self.insts = []
184 insts = map(str, self.insts)
186 '\n'.join(insts))
190 self.insts.append(inst)
193 return self.insts
213 op, arg = self.insts[-1]
226 for inst in self.insts:
238 for inst in self.insts:
322 for t in self.insts
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pyassem.py 169 self.insts = []
184 insts = map(str, self.insts)
186 '\n'.join(insts))
190 self.insts.append(inst)
193 return self.insts
213 op, arg = self.insts[-1]
226 for inst in self.insts:
238 for inst in self.insts:
322 for t in self.insts
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
pyassem.py 169 self.insts = []
184 insts = map(str, self.insts)
186 '\n'.join(insts))
190 self.insts.append(inst)
193 return self.insts
213 op, arg = self.insts[-1]
226 for inst in self.insts:
238 for inst in self.insts:
322 for t in self.insts
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 169 self.insts = []
184 insts = map(str, self.insts)
186 '\n'.join(insts))
190 self.insts.append(inst)
193 return self.insts
213 op, arg = self.insts[-1]
226 for inst in self.insts:
238 for inst in self.insts:
322 for t in self.insts
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 169 self.insts = []
184 insts = map(str, self.insts)
186 '\n'.join(insts))
190 self.insts.append(inst)
193 return self.insts
213 op, arg = self.insts[-1]
226 for inst in self.insts:
238 for inst in self.insts:
322 for t in self.insts
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm-c/
EnhancedDisassembly.h 148 @param insts A pointer to an array that will be filled in with the
159 unsigned int EDCreateInsts(EDInstRef *insts,
466 @param insts A pointer to an array that will be filled in with the
476 unsigned int EDBlockCreateInsts(EDInstRef *insts,
  /external/swiftshader/third_party/LLVM/tools/edis/
EDMain.cpp 70 unsigned int EDCreateInsts(EDInstRef *insts,
85 insts[index] = inst;
245 unsigned int EDBlockCreateInsts(EDInstRef *insts,
253 return EDCreateInsts(insts,
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
AhatArrayInstance.java 172 void initialize(final AhatInstance[] insts) {
175 return insts.length;
179 return Value.pack(insts[index]);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow_deadcode.c 155 struct instruction_state * insts = &s->Instructions[inst->IP]; local
167 insts->WriteMask |= usedmask;
178 insts->WriteALUResult = 1;
186 unsigned int newsrcmask = srcmasks[src] & ~insts->SrcReg[src];
187 insts->SrcReg[src] |= newsrcmask;
  /external/llvm/test/MC/Hexagon/
align.s 32 # Don't pad packets that can't be padded e.g. solo insts
  /toolchain/binutils/binutils-2.27/gas/config/
tc-tic4x.c 1238 static tic4x_inst_t *insts = NULL; local
    [all...]

Completed in 501 milliseconds

1 2 3