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

<<21222324252627282930>>

  /external/libgsm/src/
rpe.c 267 word xmax, xmaxc, temp, temp1, temp2; local
276 temp = xM[i];
277 temp = GSM_ABS(temp);
278 if (temp > xmax) xmax = temp;
285 temp = SASR( xmax, 9 );
290 itest |= (temp <= 0);
291 temp = SASR( temp, 1 )
361 word temp, temp1, temp2, temp3; local
    [all...]
short_term.c 153 register word temp; local
158 /* temp = GSM_ABS( *LARp );
160 * if (temp < 11059) temp <<= 1;
161 * else if (temp < 20070) temp += 11059;
162 * else temp = GSM_ADD( temp >> 2, 26112 );
164 * *LARp = *LARp < 0 ? -temp : temp;
242 register float sav, di, temp; local
321 register float scalef = 3.0517578125e-5, temp; local
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
HalAdaptation.cpp 89 char temp[120]; local
130 if ( GetStrValue ( NAME_UART_PARITY, temp, sizeof ( temp ) ) )
132 if ( strcmp ( temp, "even" ) == 0 )
134 else if ( strcmp ( temp, "odd" ) == 0 )
136 else if ( strcmp ( temp, "none" ) == 0 )
142 if ( GetStrValue ( NAME_UART_STOPBITS, temp, sizeof ( temp ) ) )
144 if ( strcmp ( temp, "1" ) == 0 )
146 else if ( strcmp ( temp, "2" ) == 0
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_NdefRecord.c 555 *temp, local
647 temp=Record->Type;
652 *Buffer = *temp;
654 temp++;
660 temp=Record->Id;
665 *Buffer = *temp;
667 temp++;
671 temp=Record->PayloadData;
676 *Buffer = *temp;
678 temp++
    [all...]
  /external/libsepol/src/
ebitmap.c 325 ebitmap_node_t *n, *temp; local
332 temp = n;
334 free(temp);
  /external/libvpx/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,
219 DECLARE_ALIGNED_ARRAY(16, uint8_t, temp, 64 * 64);
223 vp9_convolve8_c(src, src_stride, temp, 64,
225 vp9_convolve_avg_c(temp, 64, dst, dst_stride, NULL, 0, NULL, 0, w, h);
  /external/libvpx/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/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 58 PoolEntry *temp = r.entry; local
59 temp->incRef();
61 entry = temp;
  /external/lzma/CPP/7zip/Compress/
RangeCoder.h 62 Byte temp = _cache; local
65 Stream.WriteByte((Byte)(temp + (Byte)(Low >> 32)));
66 temp = 0xFF;
  /external/lzma/CPP/Common/
CommandLineParser.cpp 112 UString temp = s + pos; local
113 temp = temp.Left(switchLen);
114 if (temp.CompareNoCase(switchForms[switchIndex].IDString) == 0)
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Encoder.java 57 int temp = _cache; local
60 Stream.write(temp + LowHi);
61 temp = 0xFF;
  /external/mesa3d/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/mesa3d/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/mesa3d/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/mesa3d/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/mesa3d/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/mesa3d/src/mesa/main/
shared.c 362 struct simple_node *temp; local
364 foreach_s(node, temp, & shared->SyncObjects) {
  /external/mesa3d/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/mesa3d/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/mockito/src/org/mockito/internal/progress/
MockingProgressImpl.java 35 IOngoingStubbing temp = iOngoingStubbing; local
37 return temp;
58 VerificationMode temp = verificationMode.getObject(); local
60 return temp;
73 Location temp = stubbingInProgress; local
75 reporter.unfinishedStubbing(temp);
  /external/opencv/otherlibs/highgui/
grfmt_base.cpp 251 GrFmtFilterFactory** temp = (GrFmtFilterFactory**)pos; local
253 assert( temp == 0 || (m_factories <= temp && temp < m_factories + m_curFactories));
254 if( temp )
256 factory = *temp++;
257 pos = (ListPosition)(temp < m_factories + m_curFactories ? temp : 0);
grfmt_imageio.cpp 249 const char* temp = strchr( ext + 1, '.' ); local
250 if( !temp ) break;
251 ext = temp;
loadsave.cpp 498 CvMat *temp = 0, *temp2 = 0; local
525 CV_CALL( temp = cvCreateMat(image->rows, image->cols, image->type) );
526 CV_CALL( cvFlip( image, temp, 0 ));
527 image = temp;
549 cvReleaseMat( &temp );
  /external/openssl/crypto/aes/
aes_core.c 633 u32 temp; local
734 u32 temp; local
1208 u32 temp; local
1309 u32 temp; local
    [all...]
  /external/oprofile/libdb/
odb.h 231 uint32_t temp = value & 0xffffffff; local
232 return ((temp << 0) ^ (temp >> 8)) & data->hash_mask;

Completed in 1057 milliseconds

<<21222324252627282930>>