/external/llvm/lib/Target/Hexagon/ |
D | HexagonBitTracker.cpp | 125 const CellMapType &Inputs, CellMapType &Outputs) const { in evaluate() 141 return evaluateLoad(MI, Inputs, Outputs); in evaluate() 158 if (evaluateFormalCopy(MI, Inputs, Outputs)) in evaluate() 187 auto rr0 = [this,Reg] (const BT::RegisterCell &Val, CellMapType &Outputs) in evaluate() 189 putCell(Reg[0], Val, Outputs); in evaluate() 252 return rr0(eIMM(im(1), W0), Outputs); in evaluate() 254 return rr0(RegisterCell(W0).fill(0, W0, BT::BitValue::Zero), Outputs); in evaluate() 256 return rr0(RegisterCell(W0).fill(0, W0, BT::BitValue::One), Outputs); in evaluate() 264 return rr0(RC, Outputs); in evaluate() 272 return rr0(rc(1), Outputs); in evaluate() [all …]
|
D | HexagonBitTracker.h | 30 CellMapType &Outputs) const override; 42 CellMapType &Outputs) const; 44 CellMapType &Outputs) const;
|
D | BitTracker.cpp | 736 const CellMapType &Inputs, CellMapType &Outputs) const { in evaluate() 752 putCell(RD, Res, Outputs); in evaluate() 769 putCell(RD, Res, Outputs); in evaluate()
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_vs_exec.c | 166 output[slot][0] = CLAMP(machine->Outputs[slot].xyzw[0].f[j], 0.0f, 1.0f); in vs_exec_run_linear() 167 output[slot][1] = CLAMP(machine->Outputs[slot].xyzw[1].f[j], 0.0f, 1.0f); in vs_exec_run_linear() 168 output[slot][2] = CLAMP(machine->Outputs[slot].xyzw[2].f[j], 0.0f, 1.0f); in vs_exec_run_linear() 169 output[slot][3] = CLAMP(machine->Outputs[slot].xyzw[3].f[j], 0.0f, 1.0f); in vs_exec_run_linear() 172 output[slot][0] = machine->Outputs[slot].xyzw[0].f[j]; in vs_exec_run_linear() 178 output[slot][0] = machine->Outputs[slot].xyzw[0].f[j]; in vs_exec_run_linear() 179 output[slot][1] = machine->Outputs[slot].xyzw[1].f[j]; in vs_exec_run_linear() 180 output[slot][2] = machine->Outputs[slot].xyzw[2].f[j]; in vs_exec_run_linear() 181 output[slot][3] = machine->Outputs[slot].xyzw[3].f[j]; in vs_exec_run_linear()
|
D | draw_gs.c | 189 output[slot][0] = machine->Outputs[idx + slot].xyzw[0].f[0]; in draw_geometry_fetch_outputs() 190 output[slot][1] = machine->Outputs[idx + slot].xyzw[1].f[0]; in draw_geometry_fetch_outputs() 191 output[slot][2] = machine->Outputs[idx + slot].xyzw[2].f[0]; in draw_geometry_fetch_outputs() 192 output[slot][3] = machine->Outputs[idx + slot].xyzw[3].f[0]; in draw_geometry_fetch_outputs()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | gen7_sol_state.c | 130 int buffer = linked_xfb_info->Outputs[i].OutputBuffer; in upload_3dstate_so_decl_list() 132 int vert_result = linked_xfb_info->Outputs[i].OutputRegister; in upload_3dstate_so_decl_list() 134 (1 << linked_xfb_info->Outputs[i].NumComponents) - 1; in upload_3dstate_so_decl_list() 138 assert(linked_xfb_info->Outputs[i].NumComponents == 1); in upload_3dstate_so_decl_list() 141 component_mask <<= linked_xfb_info->Outputs[i].ComponentOffset; in upload_3dstate_so_decl_list() 154 assert(linked_xfb_info->Outputs[i].DstOffset == next_offset[buffer]); in upload_3dstate_so_decl_list() 156 next_offset[buffer] += linked_xfb_info->Outputs[i].NumComponents; in upload_3dstate_so_decl_list()
|
D | gen6_sol.c | 53 unsigned buffer = linked_xfb_info->Outputs[i].OutputBuffer; in gen6_update_sol_surfaces() 56 linked_xfb_info->Outputs[i].DstOffset; in gen6_update_sol_surfaces() 59 linked_xfb_info->Outputs[i].NumComponents, in gen6_update_sol_surfaces()
|
D | brw_gs.c | 215 linked_xfb_info->Outputs[i].OutputRegister; in populate_key() 217 swizzle_for_offset[linked_xfb_info->Outputs[i].ComponentOffset]; in populate_key()
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vb_program.c | 238 ASSIGN_4V(machine->Outputs[i], 0.0F, 0.0F, 0.0F, 1.0F); in init_machine() 400 check_float(machine->Outputs[attr][0]); in run_vp() 401 check_float(machine->Outputs[attr][1]); in run_vp() 402 check_float(machine->Outputs[attr][2]); in run_vp() 403 check_float(machine->Outputs[attr][3]); in run_vp() 405 COPY_4V(store->results[attr].data[i], machine->Outputs[attr]); in run_vp() 415 ASSERT(machine->Outputs[0][3] != 0.0F); in run_vp() 419 machine->Outputs[0][0], in run_vp() 420 machine->Outputs[0][1], in run_vp() 421 machine->Outputs[0][2], in run_vp() [all …]
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_fs_exec.c | 147 sizeof(machine->Outputs[i])); in exec_run() 151 &machine->Outputs[i], in exec_run() 160 quad->output.depth[j] = machine->Outputs[i].xyzw[2].f[j]; in exec_run() 168 quad->output.stencil[j] = (unsigned)machine->Outputs[i].xyzw[1].f[j]; in exec_run()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_fragprog.c | 232 machine->Outputs[FRAG_RESULT_COLOR]); in run_program() 243 machine->Outputs[FRAG_RESULT_DATA0 + buf]); in run_program() 250 const GLfloat depth = machine->Outputs[FRAG_RESULT_DEPTH][2]; in run_program()
|
/external/mesa3d/src/mesa/program/ |
D | prog_execute.h | 64 GLfloat Outputs[MAX_PROGRAM_OUTPUTS][4]; member
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | CodeExtractor.h | 105 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs) const;
|
/external/shflags/lib/ |
D | shlib | 13 # Outputs:
|
/external/vboot_reference/scripts/image_signing/ |
D | sign_firmware.sh | 23 to <firmware_version>. Outputs signed firmware to <output_firmware>.
|
/external/mesa3d/src/glsl/ |
D | linker.cpp | 1872 info->Outputs[info->NumOutputs].ComponentOffset = 0; in store() 1876 info->Outputs[info->NumOutputs].ComponentOffset = in store() 1882 info->Outputs[info->NumOutputs].OutputRegister = in store() 1884 info->Outputs[info->NumOutputs].NumComponents = num_components; in store() 1885 info->Outputs[info->NumOutputs].OutputBuffer = buffer; in store() 1886 info->Outputs[info->NumOutputs].DstOffset = info->BufferStride[buffer]; in store() 2201 ralloc_free(prog->LinkedTransformFeedback.Outputs); in store_tfeedback_info() 2216 prog->LinkedTransformFeedback.Outputs = in store_tfeedback_info()
|
/external/llvm/docs/ |
D | yaml2obj.rst | 11 Outputs the binary to stdout.
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_exec.h | 255 struct tgsi_exec_vector *Outputs; member
|
D | tgsi_exec.c | 701 align_free(mach->Outputs); in tgsi_exec_machine_bind_shader() 704 mach->Outputs = outputs; in tgsi_exec_machine_bind_shader() 838 mach->Outputs = align_malloc(sizeof(struct tgsi_exec_vector) * PIPE_MAX_ATTRIBS, 16); in tgsi_exec_machine_create() 839 if (!mach->Inputs || !mach->Outputs) in tgsi_exec_machine_create() 867 align_free(mach->Outputs); in tgsi_exec_machine_create() 884 align_free(mach->Outputs); in tgsi_exec_machine_destroy() 1170 chan->u[i] = mach->Outputs[index->i[i]].xyzw[swizzle].u[i]; in fetch_src_file_channel() 1487 dst = &mach->Outputs[offset + index].xyzw[chan_index]; in store_dest() 4275 memcpy(outputs, mach->Outputs, sizeof(outputs)); in tgsi_exec_machine_run() 4310 if (memcmp(&outputs[i], &mach->Outputs[i], sizeof(outputs[i]))) { in tgsi_exec_machine_run() [all …]
|
/external/webrtc/webrtc/modules/audio_processing/ |
D | audio_processing.gypi | 18 # Outputs some low-level debug files.
|
D | BUILD.gn | 14 # Outputs some low-level debug files.
|
/external/libvpx/libvpx/build/make/ |
D | gen_msvs_proj.sh | 89 Outputs="\$(IntDir)\\$objf" \
|
D | gen_msvs_vcxproj.sh | 98 tag_content Outputs "\$(IntDir)$objf" \
|
/external/llvm/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 161 ValueSet &Outputs) const { in findInputsOutputs() 178 Outputs.insert(&*II); in findInputsOutputs()
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | loopfilter_16_neon.asm | 99 ; Outputs:
|