HomeSort by relevance Sort by last modified time
    Searched defs:temp (Results 501 - 525 of 1947) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/libsrtp/srtp/crypto/cipher/
aes_icm.c 315 uint32_t temp; local
317 temp = ntohl(c->counter.v32[3]);
318 c->counter.v32[3] = htonl(++temp);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_convolve.c 124 uint8_t temp[64 * 324]; local
135 convolve_horiz(src - src_stride * (SUBPEL_TAPS / 2 - 1), src_stride, temp, 64,
137 convolve_vert(temp + 64 * (SUBPEL_TAPS / 2 - 1), 64, dst, dst_stride,
233 DECLARE_ALIGNED_ARRAY(16, uint8_t, temp, 64 * 64);
237 vp9_convolve8_c(src, src_stride, temp, 64,
239 vp9_convolve_avg_c(temp, 64, dst, dst_stride, NULL, 0, NULL, 0, w, h);
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/generic/
vpx_scale.c 76 unsigned int temp; local
86 temp = 8;
87 temp += 3 * source[j - source_pitch];
88 temp += 10 * source[j];
89 temp += 3 * source[j + source_pitch];
90 temp >>= 4;
91 dest[i] = (char)(temp);
216 * unsigned char *temp_area : Pointer to temp work area.
217 * unsigned char temp_area_height : Height of temp work area.
460 * unsigned char *temp_area : Pointer to temp work area
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_info.c 42 * This is where we keep store the value of each channel of the IMM/TEMP/OUT
52 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/state_trackers/vega/
api_images.c 402 VGfloat temp[VEGA_MAX_IMAGE_WIDTH][4]; local
403 VGfloat *df = (VGfloat*)temp;
457 _vega_pack_rgba_span_float(ctx, width, temp, dataFormat,
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
graw_util.h 226 struct pipe_resource temp, *tex; local
229 temp.target = PIPE_TEXTURE_2D;
230 temp.format = PIPE_FORMAT_B8G8R8A8_UNORM;
231 temp.width0 = width;
232 temp.height0 = height;
233 temp.depth0 = 1;
234 temp.last_level = 0;
235 temp.array_size = 1;
236 temp.nr_samples = 1;
237 temp.bind = PIPE_BIND_SAMPLER_VIEW
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_array_splitting.cpp 308 ir_variable *temp = new(entry->mem_ctx) ir_variable(deref_array->type, local
311 entry->components[0]->insert_before(temp);
312 *deref = new(entry->mem_ctx) ir_dereference_variable(temp);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_dma.c 298 struct radeon_dma_bo *temp; local
302 foreach_s(dma_bo, temp, &rmesa->dma.free) {
308 foreach_s(dma_bo, temp, &rmesa->dma.wait) {
314 foreach_s(dma_bo, temp, &rmesa->dma.reserved) {
346 struct radeon_dma_bo *temp; local
369 foreach_s(dma_bo, temp, &rmesa->dma.wait) {
393 foreach_s(dma_bo, temp, &rmesa->dma.reserved) {
408 foreach_s(dma_bo, temp, &rmesa->dma.free) {
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
shared.c 362 struct simple_node *temp; local
364 foreach_s(node, temp, & shared->SyncObjects) {
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
hash_table.c 96 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/
st_atom_pixeltransfer.c 199 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/
omxSP_FFTInv_CCSToR_F32_Sfs.c 71 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/openssl/openssl/crypto/aes/
aes_core.c 633 u32 temp; local
734 u32 temp; local
1208 u32 temp; local
1309 u32 temp; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBBoxRecord.cpp 172 // As a temp work-around, we scale-up pad.
297 SkRect temp; local
298 outBounds = paint->computeFastBounds(outBounds, &temp);
  /external/chromium_org/third_party/skia/src/gpu/gl/unix/
SkNativeGLContext_unix.cpp 152 XVisualInfo temp = visReturn[best]; local
153 XVisualInfo *vi = &temp;
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsSimplify.cpp 201 SkPath temp; local
202 temp.setFillType(fillType);
203 SkPathWriter assembled(temp);
  /external/chromium_org/third_party/skia/tests/
PathCoverageTest.cpp 63 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/
SpeedTest.cpp 155 uint32_t temp[16]; local
159 hash(key,len,seed,temp);
  /external/chromium_org/third_party/sqlite/src/src/
utf.c 231 u8 temp; local
241 temp = *zIn;
244 *zIn++ = temp;
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
atomicops-internals-x86.h 94 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), "+m" (*ptr
228 Atomic64 temp = increment; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
atomicops-internals-x86.h 94 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), "+m" (*ptr
228 Atomic64 temp = increment; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
parser.c 29 yystype temp = yylval; /* structure copy */ local
34 yylval = temp;
  /external/chromium_org/tools/ipc_fuzzer/mutate/
message_util.cc 87 int temp = atoi(cmd->GetSwitchValueASCII(kStartSwitch).c_str()); local
88 if (temp > 0 )
89 start_index = static_cast<size_t>(temp);
94 int temp = atoi(cmd->GetSwitchValueASCII(kEndSwitch).c_str()); local
95 if (temp > 0)
96 end_index = static_cast<size_t>(temp);
  /external/chromium_org/ui/views/controls/button/
image_button.cc 191 gfx::ImageSkia temp = images_[i]; local
193 alternate_images_[i] = temp;
  /external/chromium_org/v8/src/
date.cc 249 DST* temp = before_; local
251 after_ = temp;
298 DST* temp = before_; local
300 after_ = temp;

Completed in 893 milliseconds

<<21222324252627282930>>