Searched defs:temp (Results 201 - 225 of 1265) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vp9/common/
H A Dvp9_alloccommon.c241 MODE_INFO *temp = cm->prev_mip; local
244 cm->mip = temp;
/external/libvpx/libvpx/vpx_scale/generic/
H A Dgen_scalers.c227 int temp; local
233 temp = 8;
234 temp += source[i - (int)src_pitch] * 3;
235 temp += source[i] * 10;
236 temp += source[i + src_pitch] * 3;
237 temp >>= 4;
238 dest[i] = (unsigned char)(temp);
/external/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp190 MachineInstr* temp = phi; local
192 temp->eraseFromParent();
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_slab.c161 struct util_slab_page *page, *temp; local
164 foreach_s(page, temp, &pool->list) {
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_query.c143 uint32_t temp, *map; local
162 temp = 0;
165 temp += util_le32_to_cpu(*map);
172 vresult->b = temp != 0;
174 vresult->u64 = temp;
/external/mesa3d/src/glsl/
H A Dlower_instructions.cpp239 ir_variable *temp = new(ir) ir_variable(ir->operands[1]->type, "mod_b", local
241 this->base_ir->insert_before(temp);
244 new(ir) ir_assignment(new(ir) ir_dereference_variable(temp),
252 new(ir) ir_dereference_variable(temp));
266 ir->operands[0] = new(ir) ir_dereference_variable(temp);
H A Dlower_output_reads.cpp92 ir_variable *temp = (ir_variable *) hash_table_find(replacements, ir->var);
95 if (temp == NULL) {
97 temp = new(var_ctx) ir_variable(ir->var->type, ir->var->name,
99 hash_table_insert(replacements, temp, ir->var);
103 ir->var = temp;
112 copy(void *ctx, ir_variable *output, ir_variable *temp) argument
115 ir_dereference_variable *rhs = new(ctx) ir_dereference_variable(temp);
H A Dlower_vector.cpp136 ir_variable *const temp = local
139 this->base_ir->insert_before(temp);
188 ir_dereference *const lhs = new(mem_ctx) ir_dereference_variable(temp);
201 ir_dereference *const lhs = new(mem_ctx) ir_dereference_variable(temp);
211 *rvalue = new(mem_ctx) ir_dereference_variable(temp);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_channel_expressions.cpp92 * temp. This will make our handling of the breakdown to
260 ir_expression *temp; local
261 temp = new(mem_ctx) ir_expression(ir_binop_logic_or,
267 temp = new(mem_ctx) ir_expression(ir_binop_logic_or,
270 temp);
272 assign(ir, 0, temp);
281 ir_expression *temp; local
283 temp = new(mem_ctx) ir_expression(ir_binop_mul,
290 temp,
293 last = temp;
313 ir_expression *temp; local
[all...]
H A Dbrw_gs.h92 struct brw_reg temp; member in struct:brw_gs_compile::__anon27766
/external/oprofile/libutil++/
H A Dchild_reader.cpp132 ssize_t temp = read(fd1, buf1, PIPE_BUF); local
133 if (temp >= 0)
134 end1 = temp;
145 ssize_t temp = read(fd2, buf2 + end2, sz_buf2 - end2); local
146 if (temp > 0)
147 end2 += temp;
171 int temp = end2; local
194 if (ok && temp != end2)
/external/qemu/distrib/libselinux/src/
H A Davc_sidtab.c135 struct sidtab_node *cur, *temp; local
143 temp = cur;
145 freecon(temp->sid_s.ctx);
146 avc_free(temp);
/external/skia/debugger/
H A DSkDebugger.cpp59 int temp = fDebugCanvas->getOutstandingSaveCount(); local
60 for (int i = 0; i < temp; ++i) {
/external/skia/gm/
H A Dpathopsinverse.cpp38 SkBitmap temp; local
39 temp.allocN32Pixels(1, 1);
40 SkCanvas canvas(temp);
43 void* pixels = temp.getPixels();
H A Dsamplerstress.cpp108 SkRect temp; local
109 temp.set(SkIntToScalar(115),
115 path.addRoundRect(temp, SkIntToScalar(5), SkIntToScalar(5));
/external/skia/src/views/animated/
H A DSkProgressBarView.cpp68 int32_t temp; local
69 if (dom.findS32(node, "max", &temp))
70 this->setMax(temp);
71 if (dom.findS32(node, "progress", &temp))
72 this->setProgress(temp);
/external/skia/src/xml/
H A DSkXMLParser.cpp35 SkString temp; local
38 temp.set(gErrorStrings[fCode - 1]);
39 temp.append(fNoun);
41 SkXMLParser::GetNativeErrorString(fNativeCode, &temp);
42 str->append(temp);
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_mixer.c145 EAS_I32 temp; local
146 temp = MaximizerProcess(pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effectData, pEASData->pMixBuffer, pEASData->pMixBuffer, numSamples);
147 temp = (temp * pEASData->masterGain) >> 15;
148 if (temp > 32767)
151 gain = (EAS_U16) temp;
340 EAS_I32 temp; local
393 temp = (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
394 temp += ((pInputBuffer[src+1] * gainRight) >> NUM_MIXER_GUARD_BITS);
395 pMixBuffer[dest] += temp;
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_mixer.c145 EAS_I32 temp; local
146 temp = MaximizerProcess(pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effectData, pEASData->pMixBuffer, pEASData->pMixBuffer, numSamples);
147 temp = (temp * pEASData->masterGain) >> 15;
148 if (temp > 32767)
151 gain = (EAS_U16) temp;
340 EAS_I32 temp; local
393 temp = (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
394 temp += ((pInputBuffer[src+1] * gainRight) >> NUM_MIXER_GUARD_BITS);
395 pMixBuffer[dest] += temp;
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mixer.c145 EAS_I32 temp; local
146 temp = MaximizerProcess(pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effectData, pEASData->pMixBuffer, pEASData->pMixBuffer, numSamples);
147 temp = (temp * pEASData->masterGain) >> 15;
148 if (temp > 32767)
151 gain = (EAS_U16) temp;
340 EAS_I32 temp; local
393 temp = (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
394 temp += ((pInputBuffer[src+1] * gainRight) >> NUM_MIXER_GUARD_BITS);
395 pMixBuffer[dest] += temp;
[all...]
/external/srec/shared/src/
H A DInt8ArrayListImpl.c82 asr_int8_t* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(asr_int8_t)); local
83 if (temp == NULL)
85 impl->contents = temp;
H A DIntArrayListImpl.c81 int* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(int)); local
82 if (temp == NULL)
84 impl->contents = temp;
/external/srec/srec/cfront/
H A Dchelmel4.c41 #if LOG_AS_PRINT /* BP temp hack */
100 cepdata temp; local
105 for (j = 0, temp = 0; j < nf; j++)
106 temp += fb[j] * cp[j];
107 cep[i] = temp;
/external/srec/srec/clib/
H A Dmatrix_i.c105 double big, dumm, sum, temp; local
114 if ((temp = (double) fabs(mat[ii][jj])) > big) big = temp;
/external/tcpdump/
H A Dparsenfsfh.c123 u_int32_t temp; local
288 temp = make_uint32(fhp[3], fhp[2], fhp[1], fhp[0]);
289 fsidp->Fsid_dev.Minor = temp & 0xFFFFF;
290 fsidp->Fsid_dev.Major = (temp>>20) & 0xFFF;
342 temp = make_uint16(fhp[0], fhp[1]);
343 fsidp->Fsid_dev.Major = (temp>>2) & 0x3FFF;
344 temp = make_uint24(fhp[1], fhp[2], fhp[3]);
345 fsidp->Fsid_dev.Minor = temp & 0x3FFFF;
359 temp = make_uint32(fhp[7], fhp[6], fhp[5], fhp[4]);
360 *inop = temp;
[all...]

Completed in 2086 milliseconds

1234567891011>>