HomeSort by relevance Sort by last modified time
    Searched full:temp (Results 501 - 525 of 4258) sorted by null

<<21222324252627282930>>

  /external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs 141 UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];
142 hash2Value = temp & (kHash2Size - 1);
143 temp ^= ((UInt32)(_bufferBase[cur + 2]) << 8);
144 hash3Value = temp & (kHash3Size - 1);
145 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;
276 UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];
277 UInt32 hash2Value = temp & (kHash2Size - 1);
279 temp ^= ((UInt32)(_bufferBase[cur + 2]) << 8);
280 UInt32 hash3Value = temp & (kHash3Size - 1);
282 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 141 int temp = CrcTable[_bufferBase[cur] & 0xFF] ^ (_bufferBase[cur + 1] & 0xFF); local
142 hash2Value = temp & (kHash2Size - 1);
143 temp ^= ((int)(_bufferBase[cur + 2] & 0xFF) << 8);
144 hash3Value = temp & (kHash3Size - 1);
145 hashValue = (temp ^ (CrcTable[_bufferBase[cur + 3] & 0xFF] << 5)) & _hashMask;
276 int temp = CrcTable[_bufferBase[cur] & 0xFF] ^ (_bufferBase[cur + 1] & 0xFF); local
277 int hash2Value = temp & (kHash2Size - 1);
279 temp ^= ((int)(_bufferBase[cur + 2] & 0xFF) << 8);
280 int hash3Value = temp & (kHash3Size - 1);
282 hashValue = (temp ^ (CrcTable[_bufferBase[cur + 3] & 0xFF] << 5)) & _hashMask;
    [all...]
  /external/kernel-headers/original/asm-mips/
bitops.h 62 unsigned long temp; local
72 : "=&r" (temp), "=m" (*m)
84 : "=&r" (temp), "=m" (*m)
98 : "=&r" (temp), "=m" (*m)
127 unsigned long temp; local
137 : "=&r" (temp), "=m" (*m)
149 : "=&r" (temp), "=m" (*m)
163 : "=&r" (temp), "=m" (*m)
207 unsigned long temp; local
216 : "=&r" (temp), "=m" (*m
220 unsigned long temp; local
265 unsigned long temp; local
280 unsigned long temp; local
333 unsigned long temp; local
348 unsigned long temp; local
402 unsigned long temp; local
419 unsigned long temp; local
436 unsigned long temp; local
492 unsigned long temp; local
507 unsigned long temp; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_plsf_5.cpp 174 Word16 temp, sign;
196 // temp = mean_lsf[i] + st->past_r_q[i] * LSP_PRED_FAC_MR122;
198 temp = add (mean_lsf[i], mult (st->past_r_q[i],
201 st->past_r_q[i] = sub (lsf2_q[i], temp);
255 temp = add (mean_lsf[i], mult (st->past_r_q[i],
257 lsf1_q[i] = add (lsf1_r[i], temp);
258 lsf2_q[i] = add (lsf2_r[i], temp);
312 Word16 temp; local
333 temp =
348 temp,
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_linalg.cpp 33 double s,temp; local
39 temp=db_SafeReciprocal(d[0]);
40 A[6]=A[1]*temp;
41 A[12]=A[2]*temp;
42 A[18]=A[3]*temp;
43 A[24]=A[4]*temp;
44 A[30]=A[5]*temp;
48 temp=db_SafeReciprocal(d[1]);
49 A[13]=(A[8]-A[6]*A[12])*temp;
50 A[19]=(A[9]-A[6]*A[18])*temp;
84 double temp = 0.0; local
125 double s,temp; local
    [all...]
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_utilities_linalg.cpp 33 double s,temp; local
39 temp=db_SafeReciprocal(d[0]);
40 A[6]=A[1]*temp;
41 A[12]=A[2]*temp;
42 A[18]=A[3]*temp;
43 A[24]=A[4]*temp;
44 A[30]=A[5]*temp;
48 temp=db_SafeReciprocal(d[1]);
49 A[13]=(A[8]-A[6]*A[12])*temp;
50 A[19]=(A[9]-A[6]*A[18])*temp;
84 double temp = 0.0; local
125 double s,temp; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_linalg.cpp 33 double s,temp; local
39 temp=db_SafeReciprocal(d[0]);
40 A[6]=A[1]*temp;
41 A[12]=A[2]*temp;
42 A[18]=A[3]*temp;
43 A[24]=A[4]*temp;
44 A[30]=A[5]*temp;
48 temp=db_SafeReciprocal(d[1]);
49 A[13]=(A[8]-A[6]*A[12])*temp;
50 A[19]=(A[9]-A[6]*A[18])*temp;
84 double temp = 0.0; local
125 double s,temp; local
    [all...]
  /external/yaffs2/yaffs2/utils/
mkyaffsimage.c 210 yaffs_TagsUnion temp; local
212 memset(&temp, 0, sizeof(temp));
214 temp.asBytes[0] = ((tags->asBytes[2] & 0x0F) << 4) | ((tags->asBytes[1] & 0xF0) >> 4);
215 temp.asBytes[1] = ((tags->asBytes[1] & 0x0F) << 4) | ((tags->asBytes[0] & 0xF0) >> 4);
216 temp.asBytes[2] = ((tags->asBytes[0] & 0x0F) << 4) | ((tags->asBytes[2] & 0x30) >> 2) | ((tags->asBytes[3] & 0xC0) >> 6);
217 temp.asBytes[3] = ((tags->asBytes[3] & 0x3F) << 2) | ((tags->asBytes[2] & 0xC0) >> 6);
218 temp.asBytes[4] = ((tags->asBytes[6] & 0x03) << 6) | ((tags->asBytes[5] & 0xFC) >> 2);
219 temp.asBytes[5] = ((tags->asBytes[5] & 0x03) << 6) | ((tags->asBytes[4] & 0xFC) >> 2);
220 temp.asBytes[6] = ((tags->asBytes[4] & 0x03) << 6) | (tags->asBytes[7] & 0x3F)
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
temptable.test 55 CREATE TEMP TABLE t2(x,y,z);
152 # creates a permanent table also named T. The temp table in process A
157 CREATE TEMP TABLE t2(x,y);
176 SELECT * FROM temp.t2;
200 # TEMP takes precedence over MAIN
207 DROP TABLE t2; -- should drop TEMP
228 CREATE TEMP TABLE t2(x unique,y);
269 DROP TABLE t2; -- drops TEMP.T2
293 CREATE TEMP TABLE mask(a,b,c)
375 CREATE TEMP TABLE t9(x,y)
    [all...]
  /external/srec/portable/src/
PANSIFileImpl.c 214 void* temp; local
223 temp = MALLOC(*count * size, MTAG);
224 if (temp == NULL)
230 memcpy(temp, buffer, *count * size);
232 swap_byte_order(temp, *count, size);
235 temp = buffer;
237 *count = fwrite(temp, size, *count, impl->value);
240 FREE(temp);
241 temp = NULL;
391 LCHAR* temp; local
    [all...]
  /external/icu4c/i18n/
locdspnm.cpp 581 UnicodeString temp; local
586 resultRemainder.append(scriptDisplayName(script, temp));
589 appendWithSep(resultRemainder, regionDisplayName(country, temp));
592 appendWithSep(resultRemainder, variantDisplayName(variant, temp));
602 keyDisplayName(key, temp);
606 } else if (temp != UnicodeString(key, -1, US_INV)) {
609 temp,
617 appendWithSep(resultRemainder, temp)
810 UnicodeString temp(result, 0, maxResultSize);
811 ((const LocaleDisplayNames *)ldn)->localeDisplayName(locale, temp);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/bin/
i686-linux-gccbug 87 TEMP=`mktemp $TMPDIR/pXXXXXX` || exit 1
90 REMOVE_TEMP="rm -f $TEMP0 $TEMP $BAD $REF"
94 TEMP=$TEMPD/p$$
119 # Must use temp file due to incompatibilities in quoting behavior
251 sed -e "s;^[Tt][Oo]:.*;To: $GNATS_ADDR;" > $TEMP
253 cat > $TEMP
258 sed -e "s;^[Tt][Oo]:.*;To: $GNATS_ADDR;" $IN_FILE > $TEMP
260 cat $IN_FILE > $TEMP
275 cp $PR_FORM $TEMP ||
278 for file in $TEMP $REF ; d
    [all...]
  /external/chromium/chrome/common/extensions/
extension_l10n_util_unittest.cc 26 ScopedTempDir temp; local
27 ASSERT_TRUE(temp.CreateUniqueTempDir());
29 FilePath src_path = temp.path().Append(Extension::kLocaleFolder);
42 ScopedTempDir temp; local
43 ASSERT_TRUE(temp.CreateUniqueTempDir());
45 FilePath src_path = temp.path().Append(Extension::kLocaleFolder);
59 ScopedTempDir temp; local
60 ASSERT_TRUE(temp.CreateUniqueTempDir());
62 FilePath src_path = temp.path().Append(Extension::kLocaleFolder);
132 ScopedTempDir temp; local
151 ScopedTempDir temp; local
178 ScopedTempDir temp; local
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/
kasumi.c 143 ulong32 left, right, temp; local
154 temp = FL(left, n, skey);
155 temp = FO(temp, n++, skey);
156 right ^= temp;
157 temp = FO(right, n, skey);
158 temp = FL(temp, n++, skey);
159 left ^= temp;
170 ulong32 left, right, temp; local
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
VMHostTest.java 53 * Install pre-requisite jars for running vm-tests, creates temp directories for test.
63 // Creates temp directory recursively. We also need to create the dalvik-cache directory
66 CLog.d("Creating device temp directory, including dalvik-cache.");
70 CLog.d("Creating host temp dir %s", localTmpDir.getPath());
76 CLog.d("Extracting jar file %s to host temp directory %s.",
87 CLog.d("Cleaning up host temp dir %s", localTmpDir.getPath());
105 CLog.d("Removing device's temp dir %s from previous runs.", VM_TEST_TEMP_DIR);
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_output_reads.cpp 92 ir_variable *temp = (ir_variable *) hash_table_find(replacements, ir->var);
95 if (temp == NULL) {
97 temp = new(var_ctx) ir_variable(ir->var->type, ir->var->name,
99 hash_table_insert(replacements, temp, ir->var);
103 ir->var = temp;
112 copy(void *ctx, ir_variable *output, ir_variable *temp)
115 ir_dereference_variable *rhs = new(ctx) ir_dereference_variable(temp);
  /external/clang/test/CodeGen/
block-byref-aggr.c 17 // CHECK-NEXT: [[TEMP:%.*]] = alloca [[AGG]], align 4
19 // CHECK-NEXT: [[T0:%.*]] = getelementptr [[AGG]]* [[TEMP]], i32 0, i32 0
26 // CHECK-NEXT: [[T3:%.*]] = bitcast [[AGG]]* [[TEMP]] to i8*
43 // CHECK-NEXT: [[TEMP:%.*]] = alloca [[AGG]], align 4
45 // CHECK-NEXT: [[T0:%.*]] = getelementptr [[AGG]]* [[TEMP]], i32 0, i32 0
52 // CHECK-NEXT: [[T3:%.*]] = bitcast [[AGG]]* [[TEMP]] to i8*
59 // CHECK-NEXT: [[T3:%.*]] = bitcast [[AGG]]* [[TEMP]] to i8*
  /external/libvorbis/vq/
latticebuild.c 120 char *temp; local
125 temp=strchr(line,',');
126 if(!temp)temp=strchr(line,' ');
127 if(temp)temp++;
128 line=temp;
make_residue_books.pl 117 die "Couldn't open temp file $globalname$name.vql: $!" unless
141 my $command="$restune $globalname$name.vqh $datafile 1 > temp$$.vqh";
146 my $command="$restune $globalname$name.vqh $datafile > temp$$.vqh";
152 my $command="mv temp$$.vqh $globalname$name.vqh";
163 die "Couldn't remove temp files.\n\tcommand:$command\n"
170 $command="rm -f temp$$.vqd";
172 die "Couldn't remove temp files.\n\tcommand:$command\n"
  /external/libvpx/libvpx/vpx_scale/generic/
gen_scalers.c 227 int temp; local
233 temp = 8;
234 temp += source[i - (int)src_pitch] * 3;
235 temp += source[i] * 10;
236 temp += source[i + src_pitch] * 3;
237 temp >>= 4;
238 dest[i] = (unsigned char)(temp);
  /external/lzma/CPP/Common/
MyVector.h 76 T temp = operator[](i); local
78 operator[](j) = temp;
134 T temp = p[k]; local
142 if (compare(&temp, p + s, param) >= 0)
147 p[k] = temp;
164 T temp = p[size]; local
166 p[1] = temp;
  /external/mesa3d/src/glsl/
lower_output_reads.cpp 92 ir_variable *temp = (ir_variable *) hash_table_find(replacements, ir->var);
95 if (temp == NULL) {
97 temp = new(var_ctx) ir_variable(ir->var->type, ir->var->name,
99 hash_table_insert(replacements, temp, ir->var);
103 ir->var = temp;
112 copy(void *ctx, ir_variable *output, ir_variable *temp)
115 ir_dereference_variable *rhs = new(ctx) ir_dereference_variable(temp);
  /external/oprofile/libregex/
demangle_java_symbol.cpp 132 string temp; local
133 if (!field_type(temp, begin, end))
135 result = temp + " " + result;
196 string temp = string(begin + 1, pos);
197 replace(temp.begin(), temp.end(), '/', '.');
198 result += temp;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_QuantInvIntra_I_s.s 75 temp RN 12 label
109 LDRH temp,[pSrcDst]
110 SMULBB temp,temp,dcScaler ;// dcCoeff = dcScaler * Quantized DC coefficient(from memory)
111 SSAT temp,#12,temp ;// Saturating to 12 bits
176 STRH temp,[pSrcDst],#2
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_QuantInvIntra_I_s.s 75 temp RN 14 label
136 LDRH temp,[pSrcDst]
137 SMULBB temp,temp,dcScaler ;// dcCoeff = dcScaler * Quantized DC coefficient(from memory)
138 SSAT temp,#12,temp ;// Saturating to 12 bits
199 STRH temp,[pSrcDst],#2

Completed in 610 milliseconds

<<21222324252627282930>>