HomeSort by relevance Sort by last modified time
    Searched full:temp (Results 76 - 100 of 3104) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Mult3s_32x16.c 35 LVM_INT32 srcval,temp; local
42 MUL32x16INTO32(srcval,val,temp,15)
44 *dst = temp;
mult3s_16x16.c 34 LVM_INT32 temp; local
38 temp = (LVM_INT32)(*src) * (LVM_INT32)val;
41 *dst = (LVM_INT16)(temp >> 15);
  /external/dropbear/libtomcrypt/src/ciphers/
noekeon.c 42 temp = a^c; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8); \
43 b ^= temp; d ^= temp; \
44 temp = b^d; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8);
77 ulong32 temp; local
118 ulong32 a,b,c,d,temp; local
172 ulong32 a,b,c,d, temp; local
    [all...]
  /external/eigen/blas/
dtpmv.f 106 DOUBLE PRECISION TEMP
165 TEMP = X(J)
168 X(I) = X(I) + TEMP*AP(K)
179 TEMP = X(JX)
182 X(IX) = X(IX) + TEMP*AP(K)
196 TEMP = X(J)
199 X(I) = X(I) + TEMP*AP(K)
211 TEMP = X(JX)
214 X(IX) = X(IX) + TEMP*AP(K)
232 TEMP = X(J
    [all...]
dtpsv.f 109 DOUBLE PRECISION TEMP
169 TEMP = X(J)
172 X(I) = X(I) - TEMP*AP(K)
183 TEMP = X(JX)
187 X(IX) = X(IX) - TEMP*AP(K)
200 TEMP = X(J)
203 X(I) = X(I) - TEMP*AP(K)
214 TEMP = X(JX)
218 X(IX) = X(IX) - TEMP*AP(K)
234 TEMP = X(J
    [all...]
stpmv.f 106 REAL TEMP
165 TEMP = X(J)
168 X(I) = X(I) + TEMP*AP(K)
179 TEMP = X(JX)
182 X(IX) = X(IX) + TEMP*AP(K)
196 TEMP = X(J)
199 X(I) = X(I) + TEMP*AP(K)
211 TEMP = X(JX)
214 X(IX) = X(IX) + TEMP*AP(K)
232 TEMP = X(J
    [all...]
stpsv.f 109 REAL TEMP
169 TEMP = X(J)
172 X(I) = X(I) - TEMP*AP(K)
183 TEMP = X(JX)
187 X(IX) = X(IX) - TEMP*AP(K)
200 TEMP = X(J)
203 X(I) = X(I) - TEMP*AP(K)
214 TEMP = X(JX)
218 X(IX) = X(IX) - TEMP*AP(K)
234 TEMP = X(J
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.assign/
move_assign.pass.cpp 23 char temp[L_tmpnam]; local
24 tmpnam(temp);
26 std::fstream fso(temp, std::ios_base::in | std::ios_base::out
36 std::remove(temp);
38 std::wfstream fso(temp, std::ios_base::in | std::ios_base::out
48 std::remove(temp);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.cons/
pointer.pass.cpp 22 char temp[L_tmpnam]; local
23 tmpnam(temp);
25 std::fstream fs(temp, std::ios_base::in | std::ios_base::out
33 std::remove(temp);
35 std::wfstream fs(temp, std::ios_base::in | std::ios_base::out
43 std::remove(temp);
string.pass.cpp 22 char temp[L_tmpnam]; local
23 tmpnam(temp);
25 std::fstream fs(std::string(temp),
34 std::remove(temp);
36 std::wfstream fs(std::string(temp),
45 std::remove(temp);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.members/
close.pass.cpp 22 char temp[L_tmpnam]; local
23 tmpnam(temp);
27 fs.open(temp, std::ios_base::out);
32 remove(temp);
36 fs.open(temp, std::ios_base::out);
41 remove(temp);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/ofstream.members/
rdbuf.pass.cpp 22 char temp[L_tmpnam]; local
23 tmpnam(temp);
25 std::ofstream fs(temp);
29 remove(temp);
31 std::wofstream fs(temp);
35 remove(temp);
  /external/chromium/base/memory/
scoped_handle.h 35 FILE* temp = handle_; local
37 return temp;
  /external/libgsm/src/
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/llvm/test/CodeGen/X86/
legalize-fmp-oeq-vector-select.ll 7 %temp = select i1 %cmp, <4 x float> <float 1.000000e+00, float 0.000000e+00,
9 ret <4 x float> %temp
  /frameworks/native/opengl/tests/gralloc/
gralloc.cpp 43 void* temp = malloc(size); local
45 memset(temp, 0, size);
73 memcpy(temp, temp2, size);
79 memcpy(temp, vaddr, size);
85 memcpy(vaddr, temp, size);
92 lamecpy(temp, temp2, size);
98 lamecpy(temp, vaddr, size);
104 lamecpy(vaddr, temp, size);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/filebuf.members/
open_pointer.pass.cpp 19 char temp[L_tmpnam]; local
20 tmpnam(temp);
23 assert(f.open(temp, std::ios_base::out) != 0);
29 assert(f.open(temp, std::ios_base::in) != 0);
35 remove(temp);
38 assert(f.open(temp, std::ios_base::out) != 0);
44 assert(f.open(temp, std::ios_base::in) != 0);
50 remove(temp);
  /external/qemu/android/utils/
filelock.c 56 ** temp - a temporary file make unique with mkstemp
59 ** create 'temp' and store our pid in it
60 ** attemp to link 'lock' to 'temp'
62 ** unlink 'temp'
77 char* temp; member in struct:FileLock
120 pidfile_fd = open( lock->temp, O_RDONLY );
144 D( "could not read pid file '%s'", lock->temp );
190 pidfile_fd = open( lock->temp, O_WRONLY | O_CREAT | O_TRUNC );
193 if ( path_delete_file( lock->temp ) < 0 ) {
194 D( "could not remove '%s': %s\n", lock->temp, strerror(errno) )
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 103 temp RN 1 label
193 SUB temp,fcodeForward,#1 ;// temp=fcodeForward-1
196 LSL scaleFactor,one,temp ;// scaleFactor=1<<(fcodeForward-1)
210 LDR temp,=0xFFF
213 TEQ index,temp
223 SUB temp,fcodeForward,#1
224 M_BD_VREAD8 mvHorResidual,temp,T1,T2 ;// get mvHorResidual from bitstream if fcodeForward>1 and mvHorData!=0
240 LDR temp,=0xFFF
243 TEQ index,temp
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 103 temp RN 1 label
193 SUB temp,fcodeForward,#1 ;// temp=fcodeForward-1
196 LSL scaleFactor,one,temp ;// scaleFactor=1<<(fcodeForward-1)
210 LDR temp,=0xFFF
213 TEQ index,temp
223 SUB temp,fcodeForward,#1
224 M_BD_VREAD8 mvHorResidual,temp,T1,T2 ;// get mvHorResidual from bitstream if fcodeForward>1 and mvHorData!=0
240 LDR temp,=0xFFF
243 TEQ index,temp
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
IPAddress.java 49 String temp = address+"."; local
53 while (start < temp.length()
54 && (pos = temp.indexOf('.', start)) > start)
62 octet = Integer.parseInt(temp.substring(start, pos));
131 String temp = address + ":"; local
135 while (start < temp.length()
136 && (pos = temp.indexOf(':', start)) >= start)
145 String value = temp.substring(start, pos);
147 if (pos == (temp.length() - 1) && value.indexOf('.') > 0)
160 octet = Integer.parseInt(temp.substring(start, pos), 16)
    [all...]
  /external/icu4c/common/
locavailable.cpp 111 char ** temp; local
114 temp = _installedLocales;
119 uprv_free(temp);
134 char ** temp; local
144 temp = (char **) uprv_malloc(sizeof(char*) * (localeCount+1));
146 if (temp != NULL) {
149 ures_getNextString(&installed, NULL, (const char **)&temp[i++], &status);
151 temp[i] = NULL;
157 _installedLocales = temp;
158 temp = NULL
    [all...]
  /external/jpeg/
jidctintelsse.c 117 __m128i temp, temp2; local
181 temp = _mm_mulhi_epi16(x5, *tg3); /*row5*tg3*/ \
183 temp = _mm_adds_epi16(temp, x5); /*coef adjustment*/ \
185 tm765 = _mm_adds_epi16(temp, x3);\
188 temp = _mm_mulhi_epi16(x7, *tg1); /*row7*tg1*/ \
190 tp765 = _mm_adds_epi16(temp, x1);\
206 temp = _mm_adds_epi16(tp65, tm65);\
208 t6 = _mm_mulhi_epi16(temp, *cos4);\
210 t6 = _mm_adds_epi16(t6, temp);\
    [all...]
  /external/llvm/tools/llvm-config/
Makefile 41 > temp.sed
43 >> temp.sed
45 >> temp.sed
47 >> temp.sed
49 >> temp.sed
51 >> temp.sed
53 >> temp.sed
55 >> temp.sed
57 >> temp.sed
58 $(Verb) $(SED) -f temp.sed < $< > $
    [all...]
  /external/qemu/distrib/jpeg-6b/
jidctintelsse.c 117 __m128i temp, temp2; local
181 temp = _mm_mulhi_epi16(x5, *tg3); /*row5*tg3*/ \
183 temp = _mm_adds_epi16(temp, x5); /*coef adjustment*/ \
185 tm765 = _mm_adds_epi16(temp, x3);\
188 temp = _mm_mulhi_epi16(x7, *tg1); /*row7*tg1*/ \
190 tp765 = _mm_adds_epi16(temp, x1);\
206 temp = _mm_adds_epi16(tp65, tm65);\
208 t6 = _mm_mulhi_epi16(temp, *cos4);\
210 t6 = _mm_adds_epi16(t6, temp);\
    [all...]

Completed in 277 milliseconds

1 2 34 5 6 7 8 91011>>