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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/base/
base64.cc 12 std::string temp; local
13 temp.resize(modp_b64_encode_len(input.size())); // makes room for null byte
15 // modp_b64_encode_len() returns at least 1, so temp[0] is safe to use.
16 size_t output_size = modp_b64_encode(&(temp[0]), input.data(), input.size());
18 temp.resize(output_size); // strips off null byte
19 output->swap(temp);
23 std::string temp; local
24 temp.resize(modp_b64_decode_len(input.size()));
28 size_t output_size = modp_b64_decode(&(temp[0]), input.data(), input_size);
32 temp.resize(output_size)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/geometry-shader/
multi-line.txt 9 DCL TEMP[0]
11 MOV TEMP[0], IN[0][0]
12 ADD TEMP[0].y, IN[0][0], IN[1][0]
14 MOV OUT[0], TEMP[0]
23 MOV OUT[0], TEMP[0]
28 MOV OUT[0], TEMP[0]
37 MOV OUT[0], TEMP[0]
  /external/mesa3d/src/gallium/tests/graw/geometry-shader/
multi-line.txt 9 DCL TEMP[0]
11 MOV TEMP[0], IN[0][0]
12 ADD TEMP[0].y, IN[0][0], IN[1][0]
14 MOV OUT[0], TEMP[0]
23 MOV OUT[0], TEMP[0]
28 MOV OUT[0], TEMP[0]
37 MOV OUT[0], TEMP[0]
  /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_org/third_party/lzma_sdk/
LzHash.h 18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
19 hash2Value = temp & (kHash2Size - 1); \
20 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
24 hash2Value = temp & (kHash2Size - 1); \
25 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
26 hashValue = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
29 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
30 hash2Value = temp & (kHash2Size - 1); \
31 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1);
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzHash.h 19 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
20 hash2Value = temp & (kHash2Size - 1); \
21 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
24 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
25 hash2Value = temp & (kHash2Size - 1); \
26 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
27 hashValue = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
30 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
31 hash2Value = temp & (kHash2Size - 1); \
32 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1);
    [all...]
  /external/lzma/C/
LzHash.h 18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
19 hash2Value = temp & (kHash2Size - 1); \
20 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
24 hash2Value = temp & (kHash2Size - 1); \
25 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
26 hashValue = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
29 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
30 hash2Value = temp & (kHash2Size - 1); \
31 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
    [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/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Water/
simple_water.vert 44 vec4 temp;
50 temp = viewpos - inPosition;
52 viewDir.x = dot(temp, tangent);
53 viewDir.y = dot(temp, binormal);
54 viewDir.z = dot(temp, norm);
57 temp = vec4(m_lightPos,1.0)- inPosition;
58 lightDir.x = dot(temp, tangent);
59 lightDir.y = dot(temp, binormal);
60 lightDir.z = dot(temp, norm);
70 temp = viewSpaceLightPos - viewSpacePos
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
radeon_compiler_util_tests.c 44 "ADD temp[0].z, temp[6].__x_, const[1].__x_;",
45 "CMP temp[0].y, temp[0]._z__, const[0]._z__, temp[0]._y__;");
53 "ADD temp[3], temp[1], temp[2];",
54 "MAD temp[1], temp[0], const[0].xxxx, -temp[3];")
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
radeon_compiler_util_tests.c 44 "ADD temp[0].z, temp[6].__x_, const[1].__x_;",
45 "CMP temp[0].y, temp[0]._z__, const[0]._z__, temp[0]._y__;");
53 "ADD temp[3], temp[1], temp[2];",
54 "MAD temp[1], temp[0], const[0].xxxx, -temp[3];")
    [all...]
  /external/chromium/net/data/ftp/
dir-listing-netware-2.expected 20 temp
  /external/chromium_org/net/data/ftp/
dir-listing-netware-2.expected 20 temp
  /external/compiler-rt/lib/
lit.common.unit.cfg 16 # Propagate the temp directory. Windows requires this because it uses \Windows\
20 if 'TEMP' in os.environ:
21 config.environment['TEMP'] = os.environ['TEMP']
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
Math.java 6 long temp = b; local
8 a = temp;
15 int temp = b; local
17 a = temp;
  /frameworks/av/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...]
  /ndk/
find-win-host.cmd 19 set TEMP=windows-x86_64
22 if "%NDK_HOST_32BIT%"=="1" set TEMP=
23 if "%NDK_HOST_32BIT%"=="true" set TEMP=
24 if not exist "%NDK_ROOT%prebuilt\%TEMP%" set TEMP=
25 if "%ProgramW6432%"=="" if "%ProgramFiles(x86)%"=="" set TEMP=
28 if "%TEMP%"=="" set TEMP=windows
31 endlocal && set "%1=%TEMP%"
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
asm_util.h 46 "DCL TEMP[0..3], CONSTANT\n"
48 "0: TEX TEMP[1], IN[0], SAMP[0], 2D\n"/*umask*/
49 "1: TEX TEMP[0], IN[1], SAMP[1], 2D\n"/*uprev*/
50 "2: SUB TEMP[2], CONST[0], TEMP[0]\n"
51 "3: SUB TEMP[3], CONST[0], TEMP[1]\n"
52 "4: MUL TEMP[0].w, TEMP[2].wwww, TEMP[3].wwww\n
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
asm_util.h 46 "DCL TEMP[0..3], CONSTANT\n"
48 "0: TEX TEMP[1], IN[0], SAMP[0], 2D\n"/*umask*/
49 "1: TEX TEMP[0], IN[1], SAMP[1], 2D\n"/*uprev*/
50 "2: SUB TEMP[2], CONST[0], TEMP[0]\n"
51 "3: SUB TEMP[3], CONST[0], TEMP[1]\n"
52 "4: MUL TEMP[0].w, TEMP[2].wwww, TEMP[3].wwww\n
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
recover0.test 36 db eval {DROP TABLE IF EXISTS temp.syntax}
38 CREATE VIRTUAL TABLE temp.syntax USING recover(
47 db eval {DROP TABLE IF EXISTS temp.syntax}
49 CREATE VIRTUAL TABLE temp.syntax USING recover(
58 db eval {DROP TABLE IF EXISTS temp.syntax}
60 CREATE VIRTUAL TABLE temp.syntax USING recover(
71 # Fails if virtual table is not in the temp database.
73 db eval {DROP TABLE IF EXISTS temp.syntax;}
80 } {1 {recover table must be in temp database}}
84 db eval {DROP TABLE IF EXISTS temp.syntax;
    [all...]
tkt-d82e3f3721.test 32 CREATE TEMP TABLE t2(a INTEGER PRIMARY KEY AUTOINCREMENT, b);
44 SELECT 'temp', * FROM temp.sqlite_sequence
47 } {main t1 3 temp t2 3}
53 SELECT 'temp', * FROM temp.sqlite_sequence
56 } {main t1 3 temp t2 3}
61 CREATE TEMP TABLE t3(x);
69 SELECT * FROM temp.t3 JOIN main.t3;
75 SELECT * FROM temp.t3 JOIN main.t3
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/ir/
atan.ir 97 (declare () float temp)
98 (call atan (var_ref temp) ((swiz x (var_ref y)) (swiz x (var_ref x))))
99 (assign (x) (var_ref r) (var_ref temp))
100 (call atan (var_ref temp) ((swiz y (var_ref y)) (swiz y (var_ref x))))
101 (assign (y) (var_ref r) (var_ref temp))
109 (declare () float temp)
110 (call atan (var_ref temp) ((swiz x (var_ref y)) (swiz x (var_ref x))))
111 (assign (x) (var_ref r) (var_ref temp))
112 (call atan (var_ref temp) ((swiz y (var_ref y)) (swiz y (var_ref x))))
113 (assign (y) (var_ref r) (var_ref temp))
    [all...]
  /external/mesa3d/src/glsl/builtins/ir/
atan.ir 97 (declare () float temp)
98 (call atan (var_ref temp) ((swiz x (var_ref y)) (swiz x (var_ref x))))
99 (assign (x) (var_ref r) (var_ref temp))
100 (call atan (var_ref temp) ((swiz y (var_ref y)) (swiz y (var_ref x))))
101 (assign (y) (var_ref r) (var_ref temp))
109 (declare () float temp)
110 (call atan (var_ref temp) ((swiz x (var_ref y)) (swiz x (var_ref x))))
111 (assign (x) (var_ref r) (var_ref temp))
112 (call atan (var_ref temp) ((swiz y (var_ref y)) (swiz y (var_ref x))))
113 (assign (y) (var_ref r) (var_ref temp))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 111 temp RN 11 label
145 ;// Caulucate temp pred by performing Division
156 ADD temp,dcScaler,dcScaler
157 LDRH temp,[predCoeffTable,temp] ;// Load value from coeff table for performing division using multiplication
159 SMULBB tempPred,temp,absCoeffDC ;// tempPred=pPredBufRow(Col)[0]*32767/dcScaler
167 LDRH temp,[pPredBufCol]
174 STRH temp,[pPredBufRow,#-16]
176 LDRH temp,[pSrcDst] ;// temp=pSrcDst[0
    [all...]

Completed in 408 milliseconds

1 2 34 5 6 7 8 91011>>