Searched defs:temp (Results 251 - 275 of 1265) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/icu/source/test/intltest/
H A Dpptest.cpp193 UnicodeString temp; local
196 temp.remove();
197 //temp = new StringBuffer(); // Get new buffer
208 temp += UnicodeString("="/*'='*/); // initialize
209 logln("FP " + temp + res);
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dfilestrm.c82 FILE* temp = fopen(filename, "r"); local
83 if (temp) {
84 fclose(temp);
/external/chromium_org/third_party/libjpeg_turbo/
H A Drdppm.c253 register int temp; local
254 temp = UCH(*bufferptr++) << 8;
255 temp |= UCH(*bufferptr++);
256 *ptr++ = rescale[temp];
277 register int temp; local
278 temp = UCH(*bufferptr++) << 8;
279 temp |= UCH(*bufferptr++);
280 *ptr++ = rescale[temp];
281 temp = UCH(*bufferptr++) << 8;
282 temp |
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_info.c52 struct lp_tgsi_channel_info temp[32][4]; member in struct:analysis_context
69 if (src->Index < Elements(ctx->temp)) {
70 *chan_info = ctx->temp[src->Index][swizzle];
198 regs = ctx->temp;
199 max_regs = Elements(ctx->temp);
325 memset(&ctx->temp, 0, sizeof ctx->temp);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program_tex.c63 unsigned temp = rc_find_free_temporary(&compiler->Base); local
69 inst_mov->U.I.DstReg.Index = temp;
78 inst->U.I.SrcReg[0].Index = temp;
86 unsigned temp = rc_find_free_temporary(&compiler->Base); local
91 inst_rcp->U.I.DstReg.Index = temp;
102 inst_mul->U.I.DstReg.Index = temp;
105 inst_mul->U.I.SrcReg[1].Index = temp;
111 inst->U.I.SrcReg[0].Index = temp;
168 /* Redirect TEX to a new temp. */
280 * MUL temp, texcoor
302 unsigned temp = rc_find_free_temporary(c); local
411 unsigned temp = rc_find_free_temporary(c); local
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dopt_algebraic.cpp108 ir_rvalue *temp = ir2->operands[op2]; local
110 ir1->operands[op1] = temp;
191 ir_expression *temp; local
264 temp = new(mem_ctx) ir_expression(ir_unop_neg,
268 return swizzle_if_required(ir, temp);
306 temp = new(mem_ctx) ir_expression(ir_unop_rcp,
310 return swizzle_if_required(ir, temp);
409 temp = new(mem_ctx) ir_expression(ir_unop_rsq,
413 return swizzle_if_required(ir, temp);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_shader.cpp144 bool temp = stage == MESA_SHADER_FRAGMENT; local
148 input, output, temp, uniform);
H A Dbrw_vec4_reg_allocate.cpp334 dst_reg temp = dst_reg(inst->src[i]); local
339 temp.writemask = 0;
341 temp.writemask |= (1 << BRW_GET_SWZ(inst->src[i].swizzle, c));
342 assert(temp.writemask != 0);
344 emit_scratch_read(inst, temp, spill_reg, spill_offset);
356 src_reg temp = src_reg(inst->dst); local
357 temp.swizzle = BRW_SWIZZLE_XYZW;
358 emit_scratch_write(inst, temp, spill_reg, spill_offset);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dshared.c362 struct simple_node *temp; local
364 foreach_s(node, temp, & shared->SyncObjects) {
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dhash_table.c96 struct node *temp; local
101 foreach_s(node, temp, & ht->buckets[i]) {
199 struct node *node, *temp; local
200 foreach_s(node, temp, &ht->buckets[bucket]) {
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom_pixeltransfer.c199 const GLuint temp = 1; local
213 /* TEX temp.rg, colorTemp.rgba, texture[1], 2D; */
217 inst[ic].DstReg.Index = temp;
225 /* TEX temp.ba, colorTemp.baba, texture[1], 2D; */
229 inst[ic].DstReg.Index = temp;
239 /* MOV colorTemp, temp; */
245 inst[ic].SrcReg[0].Index = temp;
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A DomxSP_FFTFwd_RToCCS_F32_Sfs.c75 OMX_FC32 temp; local
90 // temp = B[k] * W[k]
91 temp.Re = big_b.Re * tw[0] + big_b.Im * tw[n];
92 temp.Im = big_b.Re * tw[n] - big_b.Im * tw[0];
96 out[i << 1] = 0.5f * (big_a.Re - temp.Im);
97 out[(i << 1) + 1] = 0.5f * (temp.Re - big_a.Im);
99 out[j << 1] = 0.5f * (big_a.Re + temp.Im);
100 out[(j << 1) + 1] = 0.5f * (temp.Re + big_a.Im);
150 // temp = B[k] * W[k]
H A DomxSP_FFTInv_CCSToR_F32_Sfs.c71 OMX_FC32 temp; local
79 // temp = (X[k] - X'[N/2 - k])
80 temp.Re = in[i] - in[j];
81 temp.Im = in[i + 1] + in[j + 1];
90 big_b.Re = temp.Re * tw[0] + temp.Im * tw[n];
91 big_b.Im = temp.Re * tw[n] - temp.Im * tw[0];
143 // temp = (X[k] - X'[N/2 - k])
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Datomicops_internals_mips_gcc.h77 Atomic32 temp, old; local
82 "move %0, %3\n" // temp = new_value
83 "sc %0, %2\n" // *ptr = temp (with atomic check)
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
98 Atomic32 temp, temp2; local
103 "ll %0, %4\n" // temp = *ptr
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
109 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
209 Atomic64 temp, ol local
230 Atomic64 temp, temp2; local
[all...]
H A Datomicops_internals_x86_gcc.h77 Atomic32 temp = increment; local
79 : "+r" (temp), "+m" (*ptr)
81 // temp now holds the old value of *ptr
82 return temp + increment;
87 Atomic32 temp = increment; local
89 : "+r" (temp), "+m" (*ptr)
91 // temp now holds the old value of *ptr
95 return temp + increment;
201 Atomic64 temp = increment; local
203 : "+r" (temp), "
211 Atomic64 temp = increment; local
[all...]
/external/chromium_org/third_party/skia/bench/
H A DAAClipBench.cpp124 SkRect temp = SkRect::MakeLTRB(0, 0, local
126 temp.offset(offset);
129 path.addRoundRect(temp, SkIntToScalar(3), SkIntToScalar(3));
/external/chromium_org/third_party/skia/samplecode/
H A DSampleAnimatedGradient.cpp43 SkScalar t, temp, x, y; local
48 temp = SampleCode::GetAnimScalar(SkIntToScalar(1), SkIntToScalar(8));
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawMatrix.cpp233 SkMatrix temp; local
234 temp.setRotate(number, 0, 0);
235 fMatrix.setScaleX(temp.getScaleX());
236 fMatrix.setScaleY(temp.getScaleY());
237 fMatrix.setSkewX(temp.getSkewX());
238 fMatrix.setSkewY(temp.getSkewY());
/external/chromium_org/third_party/skia/src/gpu/
H A DGrClipMaskCache.h28 GrClipStackFrame* temp = (GrClipStackFrame*) fStack.back(); local
29 temp->~GrClipStackFrame();
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsSimplify.cpp201 SkPath temp; local
202 temp.setFillType(fillType);
203 SkPathWriter assembled(temp);
/external/chromium_org/third_party/skia/tests/
H A DPathCoverageTest.cpp63 int temp = SkScalarCeilToInt(SkScalarSqrt(SkScalarDiv(d, tol))); local
64 uint32_t count = SkMin32(SkNextPow2(temp), MAX_POINTS_PER_CURVE);
/external/chromium_org/third_party/smhasher/src/
H A DSpeedTest.cpp155 uint32_t temp[16]; local
159 hash(key,len,seed,temp);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Datomicops-internals-x86.h94 Atomic32 temp = increment; local
96 : "+r" (temp), "+m" (*ptr)
98 // temp now holds the old value of *ptr
99 return temp + increment;
104 Atomic32 temp = increment; local
106 : "+r" (temp), "+m" (*ptr)
108 // temp now holds the old value of *ptr
112 return temp + increment;
218 Atomic64 temp = increment; local
220 : "+r" (temp), "
228 Atomic64 temp = increment; local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Datomicops-internals-x86.h94 Atomic32 temp = increment; local
96 : "+r" (temp), "+m" (*ptr)
98 // temp now holds the old value of *ptr
99 return temp + increment;
104 Atomic32 temp = increment; local
106 : "+r" (temp), "+m" (*ptr)
108 // temp now holds the old value of *ptr
112 return temp + increment;
218 Atomic64 temp = increment; local
220 : "+r" (temp), "
228 Atomic64 temp = increment; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dfilterbanks.c34 float temp; local
37 temp = FilterState[j] + APSectionFactors[j] * InOut[n];
38 FilterState[j] = -APSectionFactors[j] * temp + InOut[n];
39 InOut[n] = temp;

Completed in 1366 milliseconds

<<11121314151617181920>>