Searched defs:temps (Results 1 - 25 of 27) sorted by relevance

12

/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_opt_vpm.c96 uint32_t temps = 0; local
99 temps++;
105 if (temps == 1) {
/external/libcups/cups/
H A Dhttp-addr.c540 temps[64]; /* Temporary string for address */ local
543 if (getnameinfo(&addr->addr, (socklen_t)httpAddrLength(addr), temps, sizeof(temps), NULL, 0, NI_NUMERICHOST))
554 else if ((sptr = strchr(temps, '%')) != NULL)
570 for (sptr = temps, i = 0; i < 4 && addr->ipv6.sin6_addr.s6_addr32[i]; i ++)
574 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, (temp >> 16) & 0xffff);
582 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, temp);
594 snprintf(sptr, sizeof(temps)
[all...]
H A Ddest.c2231 cups_dest_t *temps = NULL, /* Temporary destinations */ local
2248 num_temps = _cupsGetDests(http, IPP_OP_CUPS_GET_PRINTERS, NULL, &temps, 0, CUPS_PRINTER_3D);
2252 cupsFreeDests(num_temps, temps);
2269 num_temps = cups_get_dests(filename, NULL, NULL, 0, num_temps, &temps);
2296 cupsFreeDests(num_temps, temps);
2331 if ((temp = cupsGetDest(dest->name, dest->instance, num_temps, temps)) == NULL)
2332 temp = cupsGetDest(dest->name, NULL, num_temps, temps);
2411 cupsFreeDests(num_temps, temps);
/external/libvncserver/test/
H A Dbmp.c112 unsigned char *tempbuf=NULL; char temps[255], temps2[255]; local
119 if(!fgets(temps, 255, fs)) _throw("Read error");
120 if(strlen(temps)==0 || temps[0]=='\n') continue;
121 if(sscanf(temps, "%s", temps2)==1 && temps2[1]=='#') continue;
125 if((numread=sscanf(temps, "%d %d %d", w, h, &scalefactor))==EOF)
129 if((numread=sscanf(temps, "%d %d", h, &scalefactor))==EOF)
133 if((numread=sscanf(temps, "%d", &scalefactor))==EOF)
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader_internal.h90 LLVMValueRef *temps; member in struct:si_shader_context
/external/mesa3d/src/mesa/state_tracker/
H A Dst_mesa_to_tgsi.c60 struct ureg_dst temps[MAX_PROGRAM_TEMPS]; member in struct:st_translate
88 if (ureg_dst_is_undef(t->temps[index]))
89 t->temps[index] = ureg_DECL_temporary( t->ureg );
91 return t->temps[index];
129 assert(index < ARRAY_SIZE(t->temps));
130 if (ureg_dst_is_undef(t->temps[index]))
131 t->temps[index] = ureg_DECL_temporary( t->ureg );
132 return ureg_src(t->temps[index]);
960 /* If temps are accessed with indirect addressing, declare temporaries
965 t->temps[
[all...]
H A Dst_atifs_to_tgsi.c42 struct ureg_dst temps[MAX_PROGRAM_TEMPS]; member in struct:st_translate
82 if (ureg_dst_is_undef(t->temps[index]))
83 t->temps[index] = ureg_DECL_temporary(t->ureg);
84 return t->temps[index];
324 src[0] = ureg_src(t->temps[reg]);
409 src[0] = ureg_src(t->temps[0]);
610 prog->arb.NumTemporaries = MAX_NUM_FRAGMENT_REGISTERS_ATI + 3; /* 3 input temps for arith ops */
/external/mesa3d/src/amd/vulkan/
H A Dradv_meta_bufimage.c955 struct itob_temps temps; local
957 create_iview(cmd_buffer, src, VK_IMAGE_USAGE_SAMPLED_BIT, &temps.src_iview);
958 create_bview(cmd_buffer, dst->buffer, dst->offset, dst->format, &temps.dst_bview);
959 itob_bind_descriptors(cmd_buffer, &temps);
976 radv_temp_descriptor_set_destroy(cmd_buffer->device, temps.set);
1051 struct btoi_temps temps; local
1053 create_bview(cmd_buffer, src->buffer, src->offset, src->format, &temps.src_bview);
1054 create_iview(cmd_buffer, dst, VK_IMAGE_USAGE_STORAGE_BIT, &temps.dst_iview);
1055 btoi_bind_descriptors(cmd_buffer, &temps);
1072 radv_temp_descriptor_set_destroy(cmd_buffer->device, temps
1153 struct itoi_temps temps; local
1239 struct cleari_temps temps; local
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.h459 LLVMValueRef temps[LP_MAX_INLINED_TEMPS][TGSI_NUM_CHANNELS]; member in struct:lp_build_tgsi_soa_context
463 /* We allocate/use this array of temps if (1 << TGSI_FILE_TEMPORARY) is
465 * The temps[] array above is unused then.
481 /* We allocate/use this array of temps if (1 << TGSI_FILE_IMMEDIATE) is
553 LLVMValueRef temps[LP_MAX_INLINED_TEMPS]; member in struct:lp_build_tgsi_aos_context
557 /* We allocate/use this array of temps if (1 << TGSI_FILE_TEMPORARY) is
559 * The temps[] array above is unused then.
/external/v8/src/compiler/
H A Dinstruction.cc323 InstructionOperand* temps)
343 DCHECK(!temps[i].IsInvalid());
344 operands_[offset++] = temps[i];
320 Instruction(InstructionCode opcode, size_t output_count, InstructionOperand* outputs, size_t input_count, InstructionOperand* inputs, size_t temp_count, InstructionOperand* temps) argument
H A Dinstruction-selector.cc134 InstructionOperand* temps) {
136 return Emit(opcode, output_count, &output, 0, nullptr, temp_count, temps);
143 InstructionOperand* temps) {
145 return Emit(opcode, output_count, &output, 1, &a, temp_count, temps);
153 InstructionOperand* temps) {
158 temps);
167 InstructionOperand* temps) {
172 temps);
179 size_t temp_count, InstructionOperand* temps) {
184 temps);
131 Emit(InstructionCode opcode, InstructionOperand output, size_t temp_count, InstructionOperand* temps) argument
140 Emit(InstructionCode opcode, InstructionOperand output, InstructionOperand a, size_t temp_count, InstructionOperand* temps) argument
149 Emit(InstructionCode opcode, InstructionOperand output, InstructionOperand a, InstructionOperand b, size_t temp_count, InstructionOperand* temps) argument
162 Emit(InstructionCode opcode, InstructionOperand output, InstructionOperand a, InstructionOperand b, InstructionOperand c, size_t temp_count, InstructionOperand* temps) argument
176 Emit( InstructionCode opcode, InstructionOperand output, InstructionOperand a, InstructionOperand b, InstructionOperand c, InstructionOperand d, size_t temp_count, InstructionOperand* temps) argument
188 Emit( InstructionCode opcode, InstructionOperand output, InstructionOperand a, InstructionOperand b, InstructionOperand c, InstructionOperand d, InstructionOperand e, size_t temp_count, InstructionOperand* temps) argument
200 Emit( InstructionCode opcode, InstructionOperand output, InstructionOperand a, InstructionOperand b, InstructionOperand c, InstructionOperand d, InstructionOperand e, InstructionOperand f, size_t temp_count, InstructionOperand* temps) argument
213 Emit( InstructionCode opcode, size_t output_count, InstructionOperand* outputs, size_t input_count, InstructionOperand* inputs, size_t temp_count, InstructionOperand* temps) argument
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dlinker.cpp1268 hash_table *temps)
1272 remap_visitor(struct gl_linked_shader *target, hash_table *temps) argument
1277 this->temps = temps;
1283 hash_entry *entry = _mesa_hash_table_search(temps, ir->var);
1310 hash_table *temps; member in class:remap_visitor
1313 remap_visitor v(target, temps);
1344 hash_table *temps = NULL; local
1347 temps = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
1367 _mesa_hash_table_insert(temps, va
1267 remap_variables(ir_instruction *inst, struct gl_linked_shader *target, hash_table *temps) argument
[all...]
/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_compiler.c174 int inner_temps; /* number of inner temps used; only up to one available at
300 struct etna_reg_desc *temps = file->reg; local
303 temps[idx].native = alloc_new_native_reg(c);
1813 /* No inner temps used yet for this instruction, clear counter */
2458 printf("num temps: %i\n", shader->num_temps);
/external/v8/src/compiler/arm/
H A Dinstruction-selector-arm.cc489 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
490 size_t const temp_count = arraysize(temps);
494 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
1097 InstructionOperand temps[1]; local
1105 temps[temp_count++] = g.TempRegister();
1108 selector->Emit(opcode, output_count, outputs, 3, inputs, temp_count, temps);
/external/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc300 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
301 size_t const temp_count = arraysize(temps);
305 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
642 InstructionOperand temps[] = {g.TempRegister(eax)}; local
645 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps);
651 InstructionOperand temps[] = {g.TempRegister(edx)}; local
654 g.UseUnique(node->InputAt(1)), arraysize(temps), temps);
660 InstructionOperand temps[] local
725 InstructionOperand temps[] = {g.TempRegister()}; local
750 InstructionOperand temps[] = {g.TempRegister()}; local
777 InstructionOperand temps[] = {g.TempRegister(edx)}; local
804 InstructionOperand temps[1]; local
1014 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
1021 InstructionOperand temps[] = {g.TempRegister(eax)}; local
1029 InstructionOperand temps[] = {g.TempRegister()}; local
1037 InstructionOperand temps[] = {g.TempRegister()}; local
1045 InstructionOperand temps[] = {g.TempRegister()}; local
1053 InstructionOperand temps[] = {g.TempRegister()}; local
1085 InstructionOperand temps[] = {g.TempRegister()}; local
[all...]
/external/v8/src/compiler/mips/
H A Dinstruction-selector-mips.cc326 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
327 size_t const temp_count = arraysize(temps);
330 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
604 InstructionOperand temps[1]; local
612 temps[temp_count++] = g.TempRegister();
615 selector->Emit(opcode, output_count, outputs, 3, inputs, temp_count, temps);
1813 InstructionOperand temps[] = {g.TempRegister()}; local
1815 arraysize(temps), temps);
/external/v8/src/compiler/ppc/
H A Dinstruction-selector-ppc.cc288 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
289 size_t const temp_count = arraysize(temps);
293 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
879 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
881 Emit(kPPC_MulPair, 2, outputs, 4, inputs, 2, temps);
912 InstructionOperand temps[1]; local
920 temps[temp_count++] = g.TempRegister();
923 selector->Emit(opcode, output_count, outputs, 3, inputs, temp_count, temps);
/external/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc331 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
332 size_t const temp_count = arraysize(temps);
336 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
979 InstructionOperand temps[] = {g.TempRegister(rax)}; local
983 g.UseUniqueRegister(right), arraysize(temps), temps);
989 InstructionOperand temps[] = {g.TempRegister(rdx)}; local
992 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps);
998 InstructionOperand temps[] local
1385 InstructionOperand temps[] = {g.TempRegister()}; local
1393 InstructionOperand temps[] = {g.TempRegister()}; local
1451 InstructionOperand temps[] = {g.TempRegister(rax)}; local
[all...]
/external/v8/src/compiler/x87/
H A Dinstruction-selector-x87.cc261 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
262 size_t const temp_count = arraysize(temps);
266 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
555 InstructionOperand temps[] = {g.TempRegister(eax)}; local
558 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps);
564 InstructionOperand temps[] = {g.TempRegister(edx)}; local
567 g.UseUnique(node->InputAt(1)), arraysize(temps), temps);
573 InstructionOperand temps[] local
638 InstructionOperand temps[] = {g.TempRegister()}; local
663 InstructionOperand temps[] = {g.TempRegister()}; local
690 InstructionOperand temps[] = {g.TempRegister(edx)}; local
717 InstructionOperand temps[1]; local
1021 InstructionOperand temps[] = {g.TempRegister(eax)}; local
1177 InstructionOperand temps[] = {g.TempRegister()}; local
[all...]
/external/v8/src/compiler/arm64/
H A Dinstruction-selector-arm64.cc654 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
655 size_t const temp_count = arraysize(temps);
659 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
/external/v8/src/compiler/mips64/
H A Dinstruction-selector-mips64.cc431 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
432 size_t const temp_count = arraysize(temps);
435 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
/external/v8/src/compiler/s390/
H A Dinstruction-selector-s390.cc705 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
706 size_t const temp_count = arraysize(temps);
710 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
1187 InstructionOperand temps[1]; local
1195 temps[temp_count++] = g.TempRegister();
1198 selector->Emit(opcode, output_count, outputs, 3, inputs, temp_count, temps);
/external/vixl/src/aarch64/
H A Dmacro-assembler-aarch64.cc451 UseScratchRegisterScope temps; local
454 temps.Open(masm);
455 temp = rd.IsSP() ? temps.AcquireSameSizeAs(rd) : rd;
769 UseScratchRegisterScope temps(this);
836 Register temp = temps.AcquireSameSizeAs(rn);
857 temps.Exclude(operand.GetRegister());
858 Register temp = temps.AcquireSameSizeAs(rn);
918 UseScratchRegisterScope temps(this);
919 Register temp = temps.AcquireW();
996 UseScratchRegisterScope temps(thi
1189 UseScratchRegisterScope temps; local
1322 CselSubHelperRightSmallImmediate( MacroAssembler* masm, UseScratchRegisterScope* temps, const Register& rd, const Operand& left, const Operand& right, Condition cond, bool* should_synthesise_left) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c6285 struct tgsi_exec_vector temps[TGSI_EXEC_NUM_TEMPS + TGSI_EXEC_NUM_TEMP_EXTRAS]; local
6290 memset(mach->Temps, 0, sizeof(temps));
6293 memset(temps, 0, sizeof(temps));
6316 if (memcmp(&temps[i], &mach->Temps[i], sizeof(temps[i]))) {
6319 memcpy(&temps[i], &mach->Temps[i], sizeof(temps[i]));
6326 temps[i].xyzw[0].f[j], temps[
[all...]
/external/mesa3d/src/amd/common/
H A Dac_nir_to_llvm.c1020 LLVMValueRef temps[2], result, val; local
1027 temps[i] = LLVMBuildFPExt(ctx->builder, val, ctx->f32, "");
1030 result = LLVMBuildInsertElement(ctx->builder, LLVMGetUndef(ctx->v2f32), temps[0],
1032 result = LLVMBuildInsertElement(ctx->builder, result, temps[1],

Completed in 590 milliseconds

12