HomeSort by relevance Sort by last modified time
    Searched full:temp (Results 1 - 25 of 1736) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/vp8/common/
swapyv12buffer.c 16 unsigned char *temp; local
18 temp = last_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
22 temp = last_frame->y_buffer;
24 new_frame->y_buffer = temp;
26 temp = last_frame->u_buffer;
28 new_frame->u_buffer = temp;
30 temp = last_frame->v_buffer;
32 new_frame->v_buffer = temp;
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-alg-fst.c 154 #define temp xtemp.x8 macro
158 *((word32*)temp[0]) = *((word32*)(a )) ^ *((word32*)rk[0][0]);
159 *((word32*)temp[1]) = *((word32*)(a+ 4)) ^ *((word32*)rk[0][1]);
160 *((word32*)temp[2]) = *((word32*)(a+ 8)) ^ *((word32*)rk[0][2]);
161 *((word32*)temp[3]) = *((word32*)(a+12)) ^ *((word32*)rk[0][3]);
162 *((word32*)(b )) = *((const word32*)T1[temp[0][0]])
163 ^ *((const word32*)T2[temp[1][1]])
164 ^ *((const word32*)T3[temp[2][2]])
165 ^ *((const word32*)T4[temp[3][3]]);
166 *((word32*)(b + 4)) = *((const word32*)T1[temp[1][0]]
232 #undef temp macro
242 word8 temp[4][4]; local
319 #define temp macro
397 #undef temp macro
411 word8 temp[4], shift; local
    [all...]
  /external/chromium/base/
base64.cc 12 std::string temp; local
13 temp.resize(modp_b64_encode_len(input.size())); // makes room for null byte
17 int output_size= modp_b64_encode(&(temp[0]), input.data(), input_size);
21 temp.resize(output_size); // strips off null byte
22 output->swap(temp);
27 std::string temp; local
28 temp.resize(modp_b64_decode_len(input.size()));
32 int output_size = modp_b64_decode(&(temp[0]), input.data(), input_size);
36 temp.resize(output_size);
37 output->swap(temp);
    [all...]
  /external/chromium/net/data/ftp/
dir-listing-netware-2.expected 20 temp
dir-listing-netware-2 4 d [RWCEAFMS] AK101850 512 Nov 16 15:40 temp
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
MSTo2i_Sat_16x16.c 33 LVM_INT32 temp,mVal,sVal; local
45 temp = mVal + sVal;
47 if (temp > 0x00007FFF)
51 else if (temp < -0x00008000)
57 *dst = (LVM_INT16)temp;
61 temp = mVal - sVal;
63 if (temp > 0x00007FFF)
67 else if (temp < -0x00008000)
73 *dst = (LVM_INT16)temp;
LVC_Core_MixInSoft_D16C31_SAT.c 43 LVM_INT32 Temp;
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
51 Current=Temp;
58 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q15 */
59 if (Temp > 0x00007FFF)
61 else if (Temp < -0x00008000)
64 *dst++ = (LVM_INT16)Temp;
69 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
70 Current=Temp;
77 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q (…)
    [all...]
Mac3s_Sat_16x16.c 45 LVM_INT32 Temp,dInVal;
53 Temp = (srcval *val)>>15;
57 Temp = Temp + dInVal;
59 if (Temp > 0x00007FFF)
63 else if (Temp < -0x00008000)
69 *dst = (LVM_INT16)Temp;
Shift_Sat_v16xv16.c 33 LVM_INT32 temp; local
40 temp = (LVM_INT32)*src;
43 temp = temp << val;
45 if (temp > 0x00007FFF)
49 else if (temp < -0x00008000)
55 *dst = (LVM_INT16)temp;
LVC_Core_MixHard_1St_2i_D16C31_SAT.c 37 LVM_INT32 Temp;
50 Temp = ((LVM_INT32)*(src++) * (LVM_INT32)Current1Short)>>15;
51 if (Temp > 0x00007FFF)
53 else if (Temp < -0x00008000)
56 *dst++ = (LVM_INT16)Temp;
58 Temp = ((LVM_INT32)*(src++) * (LVM_INT32)Current2Short)>>15;
59 if (Temp > 0x00007FFF)
61 else if (Temp < -0x00008000)
64 *dst++ = (LVM_INT16)Temp;
From2iToMono_16.c 33 LVM_INT32 Temp;
36 Temp = (LVM_INT32)*src;
39 Temp += (LVM_INT32)*src;
42 *dst = (LVM_INT16)(Temp >>1);
From2iToMono_32.c 33 LVM_INT32 Temp;
37 Temp = (*src>>1);
40 Temp +=(*src>>1);
43 *dst = Temp;
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
pred_intra.cpp 20 #define CLIP_COMP *comp++ = (uint8)(((uint)temp>0xFF)? 0xFF&(~(temp>>31)): temp)
28 int component, SubBlock_indx, temp; local
85 temp = SubBlock_indx & 1;
86 if (temp)
714 uint32 temp; local
722 temp = S|(R<<8)|(Q<<16)|(P<<24);*/
723 temp = *((uint32*)comp_ref);
725 *((uint32*)pred) = temp; /* write 4 at a time *
739 uint32 temp; local
774 uint32 temp; local
828 uint32 temp; local
905 uint32 temp; local
969 uint32 temp; local
1040 uint32 temp; local
1170 uint32 temp; local
1256 uint32 temp; local
1279 uint32 temp, temp2; local
1364 uint32 temp; local
1485 uint32 temp, temp2, pred_a, pred_b; local
1623 uint32 temp; local
1689 uint32 temp; local
    [all...]
header.cpp 27 uint temp; local
44 BitstreamReadBits(stream, 5, &temp);
176 uint temp; local
180 BitstreamRead1Bit(stream, &temp);
181 if (temp)
187 BitstreamReadBits(stream, 16, &temp);
189 BitstreamReadBits(stream, 16, &temp);
193 BitstreamRead1Bit(stream, &temp);
194 if (temp)
199 BitstreamRead1Bit(stream, &temp);
284 uint temp; local
525 int slice_type, temp, i; local
1163 uint temp; local
1201 uint temp, NumClockTs = 0, time_offset_length = 24, full_timestamp_flag; local
1324 uint temp; local
1338 uint temp; local
1363 uint temp, i, numBits; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_dequant.cpp 77 int32 temp; local
148 temp = (int32)datablock[k] * qmat[k] * QP;
149 temp = (temp + (0x7 & (temp >> 31))) >> 3;
150 if (temp > 2047) temp = 2047;
151 else if (temp < -2048) temp = -2048;
152 datablock[k] = (int) temp;
402 int32 temp; local
507 int32 temp; local
809 int32 temp; local
1071 int32 temp; local
    [all...]
get_pred_outside.cpp 113 #define PAD_CORNER { temp = *prev; \
114 temp |= (temp<<8); \
115 temp |= (temp<<16); \
116 *((uint32*)ptr) = temp; \
117 *((uint32*)(ptr+4)) = temp; \
118 *((uint32*)(ptr+=16)) = temp; \
119 *((uint32*)(ptr+4)) = temp; \
120 *((uint32*)(ptr+=16)) = temp; \
259 uint32 temp, temp2; local
316 temp = *(prev += 16); local
    [all...]
  /external/libgsm/src/
lpc.c 36 word temp, smax, scalauto; local
49 temp = GSM_ABS( s[k] );
50 if (temp > smax) smax = temp;
183 register word temp; local
198 temp = gsm_norm( L_ACF[0] );
200 assert(temp >= 0 && temp < 32);
203 for (i = 0; i <= 8; i++) ACF[i] = SASR( L_ACF[i] << temp, 16 );
215 temp = P[1]
257 register word temp; local
291 register word temp; local
    [all...]
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 805 uint8* temp = (uint8 *)OSCL_MALLOC(sizeof(uint8) * length); local
809 if (temp)
811 sps = temp; // Make a copy of the original pointer to be freed later
823 OSCL_FREE(temp);
850 OSCL_FREE(temp);
859 OSCL_FREE(temp);
874 OSCL_FREE(temp);
891 OSCL_FREE(temp);
908 OSCL_FREE(temp);
932 uint32 temp; local
1096 uint temp; local
1188 uint temp; local
1219 uint32 temp, pic_parameter_set_id, seq_parameter_set_id; local
1235 uint32 temp; local
1260 uint32 temp; local
    [all...]
  /device/htc/passion-common/recovery/images/
README 7 convert -gravity center -extent 480x800 -background black -depth 8 icon_firmware_install.png temp.rgb
8 rgb2565 -w 480 < temp.rgb > firmware_install.565
10 convert -gravity center -extent 480x800 -background black -depth 8 icon_firmware_error.png temp.rgb
11 rgb2565 -w 480 < temp.rgb > firmware_error.565
  /external/qemu/android/
hw-lcd.c 19 char temp[8]; local
29 snprintf(temp, sizeof temp, "%d", density);
30 boot_property_add("qemu.sf.lcd_density", temp);
  /external/zlib/contrib/iostream2/
zstream_test.cpp 9 ozstream out("temp.gz");
13 izstream in("temp.gz"); // read it back
19 out.open("temp.gz"); // try ascii output; zcat temp.gz to see the results
  /external/chromium/base/crypto/
signature_creator_win.cc 53 std::vector<uint8> temp; local
54 temp.resize(signature_length);
55 if (!CryptSignHash(hash_object_, AT_SIGNATURE, NULL, 0, &temp.front(),
60 temp.resize(signature_length);
61 for (size_t i = temp.size(); i > 0; --i)
62 signature->push_back(temp[i - 1]);
  /libcore/support/src/test/java/tests/support/
Support_GetLocal.java 40 File temp = cache.get(url); local
41 if (temp == null) {
43 temp = File.createTempFile("hyts_local", ".tmp", null);
44 temp.deleteOnExit();
45 FileOutputStream out = new FileOutputStream(temp);
53 cache.put(url, temp);
55 return temp;
60 File temp = cache.get(url); local
61 if (temp == null) {
63 temp = File.createTempFile("hyts_local", ".tmp", null)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 105 byte[] temp = new byte[BLOCK_SIZE];
109 desFunc(workingKey1, in, inOff, temp, 0);
110 desFunc(workingKey2, temp, 0, temp, 0);
111 desFunc(workingKey3, temp, 0, out, outOff);
115 desFunc(workingKey3, in, inOff, temp, 0);
116 desFunc(workingKey2, temp, 0, temp, 0);
117 desFunc(workingKey1, temp, 0, out, outOff);
  /bionic/libc/bionic/
_rand48.c 33 unsigned short temp[2]; local
37 temp[0] = (unsigned short) accu; /* lower 16 bits */
41 temp[1] = (unsigned short) accu; /* middle 16 bits */
44 xseed[0] = temp[0];
45 xseed[1] = temp[1];

Completed in 668 milliseconds

1 2 3 4 5 6 7 8 91011>>