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

/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/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp79 std::vector<struct ureg_dst> temps; member in struct:sm4_to_tgsi_converter
115 check(op.indices[0].disp < temps.size());
116 return temps[op.indices[0].disp];
660 temps.push_back(ureg_DECL_temporary(ureg));
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.h371 LLVMValueRef temps[LP_MAX_TGSI_TEMPS][TGSI_NUM_CHANNELS]; member in struct:lp_build_tgsi_soa_context
375 /* We allocate/use this array of temps if (1 << TGSI_FILE_TEMPORARY) is
377 * The temps[] array above is unused then.
457 LLVMValueRef temps[LP_MAX_TGSI_TEMPS]; member in struct:lp_build_tgsi_aos_context
461 /* We allocate/use this array of temps if (1 << TGSI_FILE_TEMPORARY) is
463 * The temps[] array above is unused then.
/external/mesa3d/src/mesa/state_tracker/
H A Dst_mesa_to_tgsi.c69 struct ureg_dst temps[MAX_PROGRAM_TEMPS]; member in struct:st_translate
172 if (ureg_dst_is_undef(t->temps[index]))
173 t->temps[index] = ureg_DECL_temporary( t->ureg );
175 return t->temps[index];
213 assert(index < Elements(t->temps));
214 if (ureg_dst_is_undef(t->temps[index]))
215 t->temps[index] = ureg_DECL_temporary( t->ureg );
216 return ureg_src(t->temps[index]);
1182 /* If temps are accessed with indirect addressing, declare temporaries
1187 t->temps[
[all...]
H A Dst_glsl_to_tgsi.cpp500 * sources into temps.
3892 struct ureg_dst temps[MAX_TEMPS]; member in struct:st_translate
4016 if (ureg_dst_is_undef(t->temps[index]))
4017 t->temps[index] = ureg_DECL_local_temporary(t->ureg);
4019 return t->temps[index];
4056 assert(index < (int) Elements(t->temps));
4057 if (ureg_dst_is_undef(t->temps[index]))
4058 t->temps[index] = ureg_DECL_local_temporary(t->ureg);
4059 return ureg_src(t->temps[index]);
4686 /* If temps ar
[all...]
/external/v8/src/compiler/
H A Dinstruction.cc312 InstructionOperand* temps)
332 DCHECK(!temps[i].IsInvalid());
333 operands_[offset++] = temps[i];
309 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/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c4270 struct tgsi_exec_vector temps[TGSI_EXEC_NUM_TEMPS + TGSI_EXEC_NUM_TEMP_EXTRAS]; local
4274 memcpy(temps, mach->Temps, sizeof(temps));
4292 if (memcmp(&temps[i], &mach->Temps[i], sizeof(temps[i]))) {
4295 memcpy(&temps[i], &mach->Temps[i], sizeof(temps[i]));
4302 temps[i].xyzw[0].f[j], temps[i].xyzw[0].u[j],
4303 temps[
[all...]
/external/mesa3d/src/glsl/
H A Dlinker.cpp791 hash_table *temps)
796 hash_table *temps)
801 this->temps = temps;
807 ir_variable *var = (ir_variable *) hash_table_find(temps, ir->var);
833 hash_table *temps; member in class:remap_visitor
836 remap_visitor v(target, temps);
867 hash_table *temps = NULL; local
870 temps = hash_table_ctor(0, hash_table_pointer_hash,
892 hash_table_insert(temps, ins
790 remap_variables(ir_instruction *inst, struct gl_shader *target, hash_table *temps) argument
795 remap_visitor(struct gl_shader *target, hash_table *temps) argument
[all...]
/external/v8/src/compiler/arm/
H A Dinstruction-selector-arm.cc461 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
462 size_t const temp_count = arraysize(temps);
466 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
1052 InstructionOperand temps[1]; local
1060 temps[temp_count++] = g.TempRegister();
1063 selector->Emit(opcode, output_count, outputs, 3, inputs, temp_count, temps);
/external/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc297 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
298 size_t const temp_count = arraysize(temps);
302 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
577 InstructionOperand temps[] = {g.TempRegister(eax)}; local
580 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps);
586 InstructionOperand temps[] = {g.TempRegister(edx)}; local
589 g.UseUnique(node->InputAt(1)), arraysize(temps), temps);
595 InstructionOperand temps[] local
660 InstructionOperand temps[] = {g.TempRegister()}; local
685 InstructionOperand temps[] = {g.TempRegister()}; local
712 InstructionOperand temps[] = {g.TempRegister(edx)}; local
739 InstructionOperand temps[1]; local
900 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
1004 InstructionOperand temps[] = {g.TempRegister(eax)}; local
1012 InstructionOperand temps[] = {g.TempRegister()}; local
1020 InstructionOperand temps[] = {g.TempRegister()}; local
1028 InstructionOperand temps[] = {g.TempRegister()}; local
1036 InstructionOperand temps[] = {g.TempRegister()}; local
1138 InstructionOperand temps[] = {g.TempRegister()}; local
[all...]
/external/v8/src/compiler/mips/
H A Dinstruction-selector-mips.cc322 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
323 size_t const temp_count = arraysize(temps);
326 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
589 InstructionOperand temps[1]; local
597 temps[temp_count++] = g.TempRegister();
600 selector->Emit(opcode, output_count, outputs, 3, inputs, temp_count, temps);
1810 InstructionOperand temps[] = {g.TempRegister()}; local
1812 arraysize(temps), temps);
/external/v8/src/compiler/ppc/
H A Dinstruction-selector-ppc.cc282 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
283 size_t const temp_count = arraysize(temps);
287 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
859 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
861 Emit(kPPC_MulPair, 2, outputs, 4, inputs, 2, temps);
892 InstructionOperand temps[1]; local
900 temps[temp_count++] = g.TempRegister();
903 selector->Emit(opcode, output_count, outputs, 3, inputs, temp_count, temps);
/external/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc283 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
284 size_t const temp_count = arraysize(temps);
288 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
964 InstructionOperand temps[] = {g.TempRegister(rax)}; local
968 g.UseUniqueRegister(right), arraysize(temps), temps);
974 InstructionOperand temps[] = {g.TempRegister(rdx)}; local
977 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps);
983 InstructionOperand temps[] local
1398 InstructionOperand temps[] = {g.TempRegister()}; local
1406 InstructionOperand temps[] = {g.TempRegister()}; local
1493 InstructionOperand temps[] = {g.TempRegister(rax)}; local
[all...]
/external/v8/src/compiler/x87/
H A Dinstruction-selector-x87.cc258 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
259 size_t const temp_count = arraysize(temps);
263 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
538 InstructionOperand temps[] = {g.TempRegister(eax)}; local
541 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps);
547 InstructionOperand temps[] = {g.TempRegister(edx)}; local
550 g.UseUnique(node->InputAt(1)), arraysize(temps), temps);
556 InstructionOperand temps[] local
621 InstructionOperand temps[] = {g.TempRegister()}; local
646 InstructionOperand temps[] = {g.TempRegister()}; local
673 InstructionOperand temps[] = {g.TempRegister(edx)}; local
700 InstructionOperand temps[1]; local
1004 InstructionOperand temps[] = {g.TempRegister(eax)}; local
1160 InstructionOperand temps[] = {g.TempRegister()}; local
[all...]
/external/v8/src/compiler/arm64/
H A Dinstruction-selector-arm64.cc644 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
645 size_t const temp_count = arraysize(temps);
649 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
/external/v8/src/compiler/mips64/
H A Dinstruction-selector-mips64.cc390 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
391 size_t const temp_count = arraysize(temps);
394 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
/external/v8/src/compiler/s390/
H A Dinstruction-selector-s390.cc376 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
377 size_t const temp_count = arraysize(temps);
381 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
916 InstructionOperand temps[1]; local
924 temps[temp_count++] = g.TempRegister();
927 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/mksh/src/
H A Dsh.h758 struct temp *temps; /* temp files */ member in struct:env

Completed in 3547 milliseconds