HomeSort by relevance Sort by last modified time
    Searched defs:inst (Results 76 - 100 of 258) sorted by null

1 2 34 5 6 7 8 91011

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_pass0.c 246 const struct prog_instruction *inst,
249 const struct prog_dst_register *dst = &inst->DstReg;
314 const struct prog_instruction *inst)
317 GLuint writemask = inst->DstReg.WriteMask;
318 GLuint nr_args = brw_wm_nr_args(inst->Opcode);
323 out->opcode = inst->Opcode;
324 out->saturate = (inst->SaturateMode != SATURATE_OFF);
325 out->tex_unit = inst->TexSrcUnit;
326 out->tex_idx = inst->TexSrcTarget;
327 out->tex_shadow = inst->TexShadow
422 const struct prog_instruction *inst = &c->prog_instructions[insn]; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_fragshader.c 38 #define SET_INST(inst, type) afs_cmd[((inst<<2) + (type<<1) + 1)]
39 #define SET_INST_2(inst, type) afs_cmd[((inst<<2) + (type<<1) + 2)]
145 struct atifs_instruction *inst = &shader->Instructions[pass][pc]; local
155 if (inst->Opcode[optype]) {
156 switch (inst->Opcode[optype]) {
170 inst->SrcReg[optype][0], 1, &tfactor);
172 inst->SrcReg[optype][1], 2, &tfactor);
180 inst->SrcReg[optype][0], 2, &tfactor)
    [all...]
  /external/mesa3d/src/mesa/main/
nvprogram.c 518 struct prog_instruction *inst; local
535 struct prog_instruction *inst = &program->Instructions[i]; local
537 inst->Opcode = OPCODE_SWZ;
538 inst->DstReg.File = PROGRAM_TEMPORARY;
539 inst->DstReg.Index = i;
540 inst->DstReg.WriteMask = WRITEMASK_XYZW;
541 inst->SrcReg[0].File = PROGRAM_TEMPORARY;
542 inst->SrcReg[0].Index = 0;
543 inst->SrcReg[0].Swizzle = MAKE_SWIZZLE4(SWIZZLE_ZERO,
549 inst = &program->Instructions[i]
569 struct prog_instruction *inst = &program->Instructions[i]; local
    [all...]
  /external/mesa3d/src/mesa/program/
programopt.c 257 struct prog_instruction *newInst, *inst; local
299 inst = newInst;
301 if (inst->Opcode == OPCODE_END)
303 if (inst->DstReg.File == PROGRAM_OUTPUT &&
304 inst->DstReg.Index == FRAG_RESULT_COLOR) {
306 inst->DstReg.File = PROGRAM_TEMPORARY;
307 inst->DstReg.Index = colorTemp;
308 inst->SaturateMode = saturate;
311 inst++;
313 assert(inst->Opcode == OPCODE_END); /* we'll overwrite this inst *
453 const struct prog_instruction *inst = prog->Instructions + i; local
528 struct prog_instruction *inst = prog->Instructions + i; local
553 struct prog_instruction *inst = prog->Instructions + i; local
564 struct prog_instruction *inst; local
570 struct prog_instruction *inst = prog->Instructions + i; local
606 struct prog_instruction *inst; local
647 struct prog_instruction *inst; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_pixeltransfer.c 144 struct prog_instruction inst[MAX_INST]; local
161 _mesa_init_instructions(inst + ic, 1);
162 inst[ic].Opcode = OPCODE_TEX;
163 inst[ic].DstReg.File = PROGRAM_TEMPORARY;
164 inst[ic].DstReg.Index = colorTemp;
165 inst[ic].SrcReg[0].File = PROGRAM_INPUT;
166 inst[ic].SrcReg[0].Index = FRAG_ATTRIB_TEX0;
167 inst[ic].TexSrcUnit = 0;
168 inst[ic].TexSrcTarget = TEXTURE_2D_INDEX;
185 _mesa_init_instructions(inst + ic, 1)
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_draw.c 496 GLuint inst; local
516 for (inst = 0; inst < prim[i].num_instances; inst++) {
523 tnl->CurInstance = inst;
  /external/valgrind/coregrind/m_gdbserver/
valgrind-low-mips32.c 172 UInt inst = getUInt((UChar *)addr); local
174 op = itype_op (inst);
175 if ((inst & 0xe0000000) != 0) {
176 rs = itype_rs (inst);
177 rt = itype_rt (inst);
189 op = rtype_funct (inst);
194 rs = itype_rs (inst);
195 rt = itype_rt (inst); /* branch condition */
valgrind-low-mips64.c 173 UInt inst = getUInt((UChar *)addr); local
175 op = itype_op (inst);
176 if ((inst & 0xe0000000) != 0) {
177 rs = itype_rs (inst);
178 rt = itype_rt (inst);
190 op = rtype_funct (inst);
195 rs = itype_rs (inst);
196 rt = itype_rt (inst); /* branch condition */
  /frameworks/base/media/mca/tests/src/android/camera/mediaeffects/tests/functional/
EffectsVideoCapture.java 42 private void captureVideos(String reportTag, Instrumentation inst) throws Exception{
50 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA);
52 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA);
58 Instrumentation inst = getInstrumentation(); local
66 Activity act = inst.startActivitySync(intent);
67 captureVideos("Back Camera Video Capture\n", inst);
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMnsObexServer.java 99 Byte inst = oap.getByte(BluetoothMasRequest.OAP_TAGID_MAS_INSTANCE_ID); local
106 mCallback.obtainMessage(BluetoothMnsService.MSG_EVENT, inst, 0, ev).sendToTarget();
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
named_params.hpp 96 static nil& inst() { static nil s_inst; return s_inst; } function in struct:boost::nfp::nfp_detail::nil
190 ref_type operator[]( keyword<unique_id,true> ) const { return m_erased ? nil_t::inst().template any_cast<ref_type>() : m_value; }
191 ref_type operator[]( keyword<unique_id,false> ) const { return m_erased ? nil_t::inst().template any_cast<ref_type>() : m_value; }
193 nil_t operator[]( keyword<UnknownId,false> ) const { return nil_t::inst(); }
  /packages/apps/Camera/tests/src/com/android/camera/power/
ImageAndVideoCapture.java 77 Instrumentation inst = getInstrumentation(); local
81 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_UP);
82 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
95 Instrumentation inst = getInstrumentation(); local
105 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
107 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
  /packages/apps/Camera/tests/src/com/android/camera/stress/
CameraLatency.java 72 Instrumentation inst = getInstrumentation(); local
73 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
77 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
CameraStartUp.java 52 Instrumentation inst = getInstrumentation(); local
53 Activity cameraActivity = inst.startActivitySync(intent);
75 Instrumentation inst = getInstrumentation(); local
76 Activity recorderActivity = inst.startActivitySync(intent);
ImageCapture.java 68 public void captureImages(String reportTag, Instrumentation inst) {
81 inst.sendKeySync(focusEvent);
82 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA);
94 Instrumentation inst = getInstrumentation(); local
101 Activity act = inst.startActivitySync(intent);
103 captureImages("Back Camera Image Capture\n", inst);
109 Instrumentation inst = getInstrumentation(); local
116 Activity act = inst.startActivitySync(intent);
118 captureImages("Front Camera Image Capture\n", inst);
SwitchPreview.java 92 Instrumentation inst = getInstrumentation(); local
VideoCapture.java 70 public void captureVideos(String reportTag, Instrumentation inst) throws Exception{
79 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA);
81 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA);
88 Instrumentation inst = getInstrumentation(); local
95 Activity act = inst.startActivitySync(intent);
97 captureVideos("Back Camera Video Capture\n", inst);
103 Instrumentation inst = getInstrumentation(); local
110 Activity act = inst.startActivitySync(intent);
112 captureVideos("Front Camera Video Capture\n", inst);
  /packages/apps/Camera2/tests/src/com/android/camera/stress/
CameraStartUp.java 52 Instrumentation inst = getInstrumentation(); local
53 Activity cameraActivity = inst.startActivitySync(intent);
75 Instrumentation inst = getInstrumentation(); local
76 Activity recorderActivity = inst.startActivitySync(intent);
ImageCapture.java 68 public void captureImages(String reportTag, Instrumentation inst) {
81 inst.sendKeySync(focusEvent);
82 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA);
93 Instrumentation inst = getInstrumentation(); local
100 Activity act = inst.startActivitySync(intent);
102 captureImages("Back Camera Image Capture\n", inst);
107 Instrumentation inst = getInstrumentation(); local
114 Activity act = inst.startActivitySync(intent);
116 captureImages("Front Camera Image Capture\n", inst);
SwitchPreview.java 91 Instrumentation inst = getInstrumentation(); local
VideoCapture.java 69 public void captureVideos(String reportTag, Instrumentation inst) throws Exception{
78 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA);
80 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA);
86 Instrumentation inst = getInstrumentation(); local
93 Activity act = inst.startActivitySync(intent);
95 captureVideos("Back Camera Video Capture\n", inst);
100 Instrumentation inst = getInstrumentation(); local
107 Activity act = inst.startActivitySync(intent);
109 captureVideos("Front Camera Video Capture\n", inst);
  /packages/apps/Camera2/tests_camera/src/com/android/camera/power/
ImageAndVideoCapture.java 77 Instrumentation inst = getInstrumentation(); local
81 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_UP);
82 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
95 Instrumentation inst = getInstrumentation(); local
105 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
107 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
  /packages/apps/Camera2/tests_camera/src/com/android/camera/stress/
CameraLatency.java 72 Instrumentation inst = getInstrumentation(); local
73 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
77 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
CameraStartUp.java 52 Instrumentation inst = getInstrumentation(); local
53 Activity cameraActivity = inst.startActivitySync(intent);
75 Instrumentation inst = getInstrumentation(); local
76 Activity recorderActivity = inst.startActivitySync(intent);
ImageCapture.java 68 public void captureImages(String reportTag, Instrumentation inst) {
81 inst.sendKeySync(focusEvent);
82 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA);
94 Instrumentation inst = getInstrumentation(); local
101 Activity act = inst.startActivitySync(intent);
103 captureImages("Back Camera Image Capture\n", inst);
109 Instrumentation inst = getInstrumentation(); local
116 Activity act = inst.startActivitySync(intent);
118 captureImages("Front Camera Image Capture\n", inst);

Completed in 790 milliseconds

1 2 34 5 6 7 8 91011