HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 101 - 125 of 2100) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu4c/test/perf/utrie2perf/
utrie2perf.bat 14 %PERF% CheckFCD -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
15 rem %PERF% CheckFCDAlwaysGet -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
16 rem %PERF% CheckFCDUTF8 -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
17 %PERF% ToNFC -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
18 %PERF% GetBiDiClass -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
  /external/kernel-headers/original/asm-mips/
atomic.h 54 unsigned long temp; local
63 : "=&r" (temp), "=m" (v->counter)
66 unsigned long temp; local
78 : "=&r" (temp), "=m" (v->counter)
99 unsigned long temp; local
108 : "=&r" (temp), "=m" (v->counter)
111 unsigned long temp; local
123 : "=&r" (temp), "=m" (v->counter)
144 unsigned long temp; local
154 : "=&r" (result), "=&r" (temp), "=m" (v->counter
158 unsigned long temp; local
196 unsigned long temp; local
210 unsigned long temp; local
256 unsigned long temp; local
274 unsigned long temp; local
435 unsigned long temp; local
447 unsigned long temp; local
480 unsigned long temp; local
492 unsigned long temp; local
525 unsigned long temp; local
539 unsigned long temp; local
577 unsigned long temp; local
591 unsigned long temp; local
637 unsigned long temp; local
655 unsigned long temp; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
q_plsf_3.cpp 209 Word16 *p_dico, temp;
217 temp = sub (lsf_r1[0], *p_dico++);
218 temp = mult (wf1[0], temp);
219 dist = L_mult (temp, temp);
221 temp = sub (lsf_r1[1], *p_dico++);
222 temp = mult (wf1[1], temp);
223 dist = L_mac (dist, temp, temp)
285 Word16 temp; local
611 Word16 temp; local
1028 Word16 temp; local
    [all...]
  /external/marisa-trie/lib/marisa/
trie.cc 27 Trie temp; local
28 temp.louds_.map(mapper);
29 temp.labels_.map(mapper);
30 temp.terminal_flags_.map(mapper);
31 temp.link_flags_.map(mapper);
32 temp.links_.map(mapper);
33 temp.tail_.map(mapper);
34 mapper.map(&temp.num_first_branches_);
35 mapper.map(&temp.num_keys_);
37 if (temp.has_link() && !temp.has_tail())
68 Trie temp; local
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie.cc 27 Trie temp; local
28 temp.louds_.map(mapper);
29 temp.labels_.map(mapper);
30 temp.terminal_flags_.map(mapper);
31 temp.link_flags_.map(mapper);
32 temp.links_.map(mapper);
33 temp.tail_.map(mapper);
34 mapper.map(&temp.num_first_branches_);
35 mapper.map(&temp.num_keys_);
37 if (temp.has_link() && !temp.has_tail())
68 Trie temp; local
    [all...]
  /external/arduino/hardware/arduino/cores/arduino/
WString.cpp 153 char *temp = (char *)realloc(_buffer, _length + 1); local
154 if ( temp != NULL ) {
155 _buffer = temp;
240 char* temp = theReturn._buffer; local
241 while( (temp = strchr( temp, findChar )) != 0 )
242 *temp = replaceChar;
250 String temp = _buffer, newString;
253 while ( (loc = temp.indexOf( match )) != -1 )
255 newString += temp.substring( 0, loc )
273 const char* temp = strchr( &_buffer[fromIndex], ch ); local
310 char* temp = strrchr( _buffer, ch ); local
331 char temp = s2[ 0 ]; local
366 int temp = right; local
376 char temp = _buffer[ right ]; \/\/ save the replaced character local
385 String temp = _buffer; local
394 String temp = _buffer; local
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
dogleg.h 17 Scalar sum, temp, alpha, bnorm; local
31 temp = qrfac(j,j);
32 if (temp == 0.) {
33 temp = epsmch * qrfac.col(j).head(j+1).maxCoeff();
34 if (temp == 0.)
35 temp = epsmch;
38 x[j] = qtb[j] / temp;
40 x[j] = (qtb[j] - qrfac.row(j).tail(n-j-1).dot(x.tail(n-j-1))) / temp;
79 temp = wa2.stableNorm();
80 sgnorm = gnorm / temp / temp
    [all...]
  /external/chromium_org/courgette/
disassembler_elf_32_arm.cc 34 uint32 temp = (arm_op & 0x00FF) << 1; local
35 if (temp & 0x0100)
36 temp |= 0xFFFFFE00;
37 temp += 4; // Offset from _next_ PC.
40 (*addr) = temp;
47 uint32 temp = (arm_op & 0x07FF) << 1; local
48 if (temp & 0x00000800)
49 temp |= 0xFFFFF000;
50 temp += 4; // Offset from _next_ PC.
52 (*addr) = temp;
59 uint32 temp = (arm_op & 0x00FFFFFF) << 2; local
69 uint32 temp = 0; local
108 uint32 temp = 0; local
150 uint32 temp = 0; local
179 uint32 temp = 0xF0008000; local
    [all...]
  /external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
sbc_dct.c 87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local
102 temp = x0 ;
104 SBC_IDCT_MULT(SBC_COS_PI_SUR_4, ( temp - x4 ), x4); /*x4 = ( temp - x4 ) * cos(1*pi/4) ; */
112 temp = x2 ;
114 SBC_IDCT_MULT(SBC_COS_3PI_SUR_8,( temp - x6 ), x6); /*x6 = ( temp - x6 ) * cos(3*pi/8) ;*/
131 temp = x1 ;
133 x5 = temp - x5 ;
141 temp = x3
209 SINT32 temp,x2; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_list.c 47 struct rc_list * temp; local
54 for (temp = *list; temp->Next; temp = temp->Next);
56 temp->Next = new_value;
57 new_value->Prev = temp;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_fog.c 98 GLfloat d, temp; local
107 temp = (end - z) * d;
108 return CLAMP(temp, 0.0F, 1.0F);
112 NEG_EXP( temp, d * z );
113 return temp;
117 NEG_EXP( temp, d * z * z );
118 return temp;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_list.c 47 struct rc_list * temp; local
54 for (temp = *list; temp->Next; temp = temp->Next);
56 temp->Next = new_value;
57 new_value->Prev = temp;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_fog.c 98 GLfloat d, temp; local
107 temp = (end - z) * d;
108 return CLAMP(temp, 0.0F, 1.0F);
112 NEG_EXP( temp, d * z );
113 return temp;
117 NEG_EXP( temp, d * z * z );
118 return temp;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.members/
open_pointer.pass.cpp 20 std::string temp = get_temp_file_name(); local
23 assert(f.open(temp.c_str(), std::ios_base::out) != 0);
29 assert(f.open(temp.c_str(), std::ios_base::in) != 0);
35 std::remove(temp.c_str());
38 assert(f.open(temp.c_str(), std::ios_base::out) != 0);
44 assert(f.open(temp.c_str(), std::ios_base::in) != 0);
50 remove(temp.c_str());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 106 byte[] temp = new byte[BLOCK_SIZE];
110 desFunc(workingKey1, in, inOff, temp, 0);
111 desFunc(workingKey2, temp, 0, temp, 0);
112 desFunc(workingKey3, temp, 0, out, outOff);
116 desFunc(workingKey3, in, inOff, temp, 0);
117 desFunc(workingKey2, temp, 0, temp, 0);
118 desFunc(workingKey1, temp, 0, out, outOff);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 7 template<class A> void temp(A);
10 apply(0, &temp);
11 apply(0, &temp<>);
14 apply(0, &temp<int>);
17 apply(0, &temp<long>); // expected-error {{no matching function for call to 'apply'}}
55 template<class T> void temp(T);
58 invoke(&temp); // expected-error {{no matching function for call to 'invoke'}}
59 invoke(&temp<>); // expected-error {{no matching function for call to 'invoke'}}
62 invoke(&temp<int>);
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
b_cn_cod.cpp 210 Word16 temp; local
238 temp = (Word16)((*pShift_reg) & 1);
239 noise_bits |= temp;
364 Word16 temp; local
375 temp = (Word16)(L_mult(i, 10, pOverflow));
376 i = temp >> 1;
501 Word16 temp; local
512 temp = ~(0xFFFF << param_size_table[i]);
513 parm[i] = *pTemp++ & temp;
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_geometry.h 55 const double *temp; local
60 temp= *X++;
61 cx+=temp[0];
62 cy+=temp[1];
101 const double *temp; local
106 temp= *X++;
107 cx+=temp[0];
108 cy+=temp[1];
109 cz+=temp[2];
db_utilities_indexing.cpp 38 double temp; local
51 temp= *(s_point++);
52 if(temp<pivot) *(d_bottom++)=temp;
53 else if(temp>pivot) *(d_top--)=temp;
59 double db_LeanQuickSelect(const double *s,long nr_elements,long pos,double *temp)
71 tempA=temp;
72 tempB=temp+nr_elements;
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_utilities_geometry.h 55 const double *temp; local
60 temp= *X++;
61 cx+=temp[0];
62 cy+=temp[1];
101 const double *temp; local
106 temp= *X++;
107 cx+=temp[0];
108 cy+=temp[1];
109 cz+=temp[2];
db_utilities_indexing.cpp 38 double temp; local
51 temp= *(s_point++);
52 if(temp<pivot) *(d_bottom++)=temp;
53 else if(temp>pivot) *(d_top--)=temp;
59 double db_LeanQuickSelect(const double *s,long nr_elements,long pos,double *temp)
71 tempA=temp;
72 tempB=temp+nr_elements;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_geometry.h 55 const double *temp; local
60 temp= *X++;
61 cx+=temp[0];
62 cy+=temp[1];
101 const double *temp; local
106 temp= *X++;
107 cx+=temp[0];
108 cy+=temp[1];
109 cz+=temp[2];
db_utilities_indexing.cpp 38 double temp; local
51 temp= *(s_point++);
52 if(temp<pivot) *(d_bottom++)=temp;
53 else if(temp>pivot) *(d_top--)=temp;
59 double db_LeanQuickSelect(const double *s,long nr_elements,long pos,double *temp)
71 tempA=temp;
72 tempB=temp+nr_elements;
  /external/opencv/cxcore/src/
cxrand.cpp 55 temp = ( A*X(n) + carry )
56 X(n+1) = temp mod (2^32)
57 carry = temp / (2^32)
73 uint64 temp = *state; \
88 temp = ICV_RNG_NEXT(temp); \
89 t0 = ((unsigned)temp & p[i + 12]) + p[i]; \
90 temp = ICV_RNG_NEXT(temp); \
91 t1 = ((unsigned)temp & p[i + 13]) + p[i+1];
214 uint64 temp = *state; local
281 uint64 temp = *state; local
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_wtsynth.c 506 EAS_I32 temp; local
540 temp = pChannel->staticPitch + pWTRegion->tuning;
544 temp += pVoice->note * 100;
546 temp += (pVoice->note + pSynth->globalTranspose) * 100;
547 intFrame.frame.phaseIncrement = WT_UpdatePhaseInc(pWTVoice, pArt, pChannel, temp);
611 EAS_I32 temp; local
614 temp = MULT_EG1_EG1(DEFAULT_LFO_MOD_WHEEL_TO_PITCH_CENTS,
618 temp += MULT_EG1_EG1(DEFAULT_LFO_CHANNEL_PRESSURE_TO_PITCH_CENTS,
622 temp = MULT_EG1_EG1(pWTVoice->modLFO.lfoValue, temp);
722 EAS_I32 temp; local
776 EAS_I32 temp; local
869 EAS_I32 temp; local
1223 EAS_I32 temp; local
    [all...]

Completed in 7824 milliseconds

1 2 3 45 6 7 8 91011>>