Searched refs:temp (Results 226 - 250 of 1627) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/stubs/
H A Dstl_util-inl.h55 ForwardIterator temp = begin; local
57 delete *temp;
/external/qemu/telephony/
H A Dtest2.c72 char temp[256]; local
78 temp[mm++] = c;
80 strcat( temp+mm, "<LF>" );
84 strcat( temp+mm, "<CR>" );
88 sprintf( temp+mm, "\\x%02x", c );
89 mm += strlen( temp+mm );
92 temp[mm] = 0;
93 printf( "%p: << %s\n", client, temp );
/external/chromium_org/base/mac/
H A Dscoped_typeref.h112 T temp = that.object_; local
114 object_ = temp;
121 T temp = object_; variable
123 return temp;
/external/chromium_org/components/crx_file/
H A Did_util.cc79 std::string temp = base::StringToLowerASCII(id);
80 for (size_t i = 0; i < temp.size(); i++)
81 if (temp[i] < 'a' || temp[i] > 'p')
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dcrypt.h37 unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an local
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
42 return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
/external/chromium_org/v8/src/base/
H A Datomicops_internals_mips_gcc.h48 Atomic32 temp, old; local
54 "move %0, %2\n" // temp = new_value
55 "sc %0, 0(%3)\n" // *ptr = temp (with atomic check)
59 : "=&r" (temp), "=&r" (old)
70 Atomic32 temp, temp2; local
75 "ll %0, 0(%3)\n" // temp = *ptr
76 "addu %1, %0, %2\n" // temp2 = temp + increment
79 "addu %1, %0, %2\n" // temp2 = temp + increment
81 : "=&r" (temp), "=&r" (temp2)
H A Datomicops_internals_x86_gcc.h52 Atomic32 temp = increment; local
54 : "+r" (temp), "+m" (*ptr)
56 // temp now holds the old value of *ptr
57 return temp + increment;
62 Atomic32 temp = increment; local
64 : "+r" (temp), "+m" (*ptr)
66 // temp now holds the old value of *ptr
70 return temp + increment;
184 Atomic64 temp = increment; local
186 : "+r" (temp), "
194 Atomic64 temp = increment; local
[all...]
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopj_intmath.h168 OPJ_INT64 temp = (OPJ_INT64) a * (OPJ_INT64) b ; local
169 temp += temp & 4096;
170 return (OPJ_INT32) (temp >> 13) ;
/external/zlib/src/contrib/minizip/
H A Dcrypt.h37 unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an local
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
42 return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
/external/chromium_org/media/base/
H A Dbit_reader_core.h57 uint64 temp; local
58 bool ret = ReadBitsInternal(num_bits, &temp);
59 *out = static_cast<T>(temp);
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Drbutil.c74 char temp; local
106 temp = buffer[(length-1) - j];
108 buffer[j] = temp;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Datomicops-internals-x86.h94 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), "
228 Atomic64 temp = increment; local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Datomicops-internals-x86.h94 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), "
228 Atomic64 temp = increment; local
[all...]
/external/e2fsprogs/ext2ed/
H A Dext2_com.c53 char temp [80],buffer [80],*ptr; local
69 sprintf (temp,"cd %s",buffer+1);dispatch (temp);
/external/icu/icu4c/source/tools/genrb/
H A Drbutil.c74 char temp; local
106 temp = buffer[(length-1) - j];
108 buffer[j] = temp;
/external/jpeg/
H A Djcdctmgr.c227 { register DCTELEM temp, qval; local
233 temp = workspace[i];
251 if (temp < 0) {
252 temp = -temp;
253 temp += qval>>1; /* for rounding */
254 DIVIDE_BY(temp, qval);
255 temp = -temp;
257 temp
318 { register FAST_FLOAT temp; local
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jcdctmgr.c228 { register DCTELEM temp, qval; local
234 temp = workspace[i];
252 if (temp < 0) {
253 temp = -temp;
254 temp += qval>>1; /* for rounding */
255 DIVIDE_BY(temp, qval);
256 temp = -temp;
258 temp
319 { register FAST_FLOAT temp; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djcdctmgr.c227 { register DCTELEM temp, qval; local
233 temp = workspace[i];
251 if (temp < 0) {
252 temp = -temp;
253 temp += qval>>1; /* for rounding */
254 DIVIDE_BY(temp, qval);
255 temp = -temp;
257 temp
318 { register FAST_FLOAT temp; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/delay_tool/
H A Dparse_delay_file.m60 temp = [3; 0];
62 while all(temp(1,:) == 3)
64 temp = fread(fid, [2 M], '*int32');
69 (find(temp(1,:) ~= 3, 1 ) - 2) * 2 * 4 + 4, 'cof');
130 temp = fread(fid, 1, 'int32');
132 tot_expand = tot_expand + temp / (fs_now / 1000);
136 temp = fread(fid, 1, 'int32');
138 tot_accelerate = tot_accelerate + temp / (fs_now / 1000);
142 temp = fread(fid, 1, 'int32');
144 tot_preemptive = tot_preemptive + temp / (fs_no
[all...]
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dfdjac1.h22 Scalar eps, temp; local
39 temp = x[j];
40 h = eps * abs(temp);
43 x[j] = temp + h;
47 x[j] = temp;
H A Dqrsolv.h21 Scalar temp; local
60 temp = givens.c() * wa[k] + givens.s() * qtbpj;
62 wa[k] = temp;
66 temp = givens.c() * s(i,k) + givens.s() * sdiag[i];
68 s(i,k) = temp;
H A Dr1updt.h22 Scalar temp; local
51 temp = givens.c() * s(j,i) - givens.s() * w[i];
53 s(j,i) = temp;
72 temp = givens.c() * s(j,i) + givens.s() * w[i];
74 s(j,i) = temp;
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_fmengine.c288 EAS_I32 temp; local
306 temp = *pLastOutput;
308 temp = 0;
318 temp = *pModBuffer++ << FM_MODULATOR_INPUT_SHIFT;
325 temp = (temp * (EAS_I32) feedback) << FM_FEEDBACK_SHIFT;
329 phaseTemp = phase + temp;
332 temp = sineTable[phaseTemp >> (32 - SINE_TABLE_SIZE_IN_BITS)];
338 temp = FMUL_15x15(temp, (gai
396 EAS_I32 temp; local
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_fmengine.c288 EAS_I32 temp; local
306 temp = *pLastOutput;
308 temp = 0;
318 temp = *pModBuffer++ << FM_MODULATOR_INPUT_SHIFT;
325 temp = (temp * (EAS_I32) feedback) << FM_FEEDBACK_SHIFT;
329 phaseTemp = phase + temp;
332 temp = sineTable[phaseTemp >> (32 - SINE_TABLE_SIZE_IN_BITS)];
338 temp = FMUL_15x15(temp, (gai
396 EAS_I32 temp; local
[all...]
/external/aac/libFDK/src/
H A DFDK_trigFcts.cpp242 FIXP_DBL result, temp; local
261 temp = fPow2(x); // q25 * q25 - (DFRACT_BITS-1) = q19
262 temp = fMult(temp, ONEBY3P56); // q19 * q31 - (DFRACT_BITS-1) = q19
263 temp = temp + Q(19); // q19 + q19 = q19
264 result = fDivNorm(x, temp, &res_e);
279 temp = fPow2Div2(x); // q25 * q25 - (DFRACT_BITS-1) - 1 = q18
280 temp = temp
[all...]

Completed in 519 milliseconds

1234567891011>>