/cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/ |
ProgramVertexTest.java | 128 " vec4 temp = ATTRIB_position;\n"+ 129 " temp.xyz += ATTRIB_normal;\n"+ 130 " temp.xy += ATTRIB_texture0;\n"+ 131 " gl_Position = temp;\n"+ 135 " vec4 temp = ATTRIB_position;\n"+ 136 " temp.xyz += ATTRIB_normal;\n"+ 137 " temp.xy += ATTRIB_texture0;\n"+ 138 " temp += ATTRIB_extra4;\n"+ 139 " temp.xyz += ATTRIB_extra3;\n "+ 140 " temp.xy += ATTRIB_extra2;\n" [all...] |
/external/marisa-trie/lib/marisa/ |
mapper.cc | 75 Mapper temp; local 76 temp.size_ = (std::size_t)file_size; 78 temp.file_ = ::CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ, 80 MARISA_THROW_IF(temp.file_ == NULL, MARISA_IO_ERROR); 82 temp.map_ = ::CreateFileMapping(temp.file_, NULL, PAGE_READONLY, 0, 0, NULL); 83 MARISA_THROW_IF(temp.map_ == NULL, MARISA_IO_ERROR); 85 temp.origin_ = ::MapViewOfFile(temp.map_, FILE_MAP_READ, 0, 0, 0); 86 MARISA_THROW_IF(temp.origin_ == NULL, MARISA_IO_ERROR) 103 Mapper temp; local [all...] |
intvector.cc | 58 IntVector temp; local 59 temp.units_.map(mapper); 60 mapper.map(&temp.num_bits_per_int_); 61 mapper.map(&temp.mask_); 62 mapper.map(&temp.size_); 63 temp.swap(this); 89 IntVector temp; local 90 temp.units_.read(reader); 91 reader.read(&temp.num_bits_per_int_); 92 reader.read(&temp.mask_) [all...] |
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
mapper.cc | 78 Mapper temp; local 79 temp.size_ = (std::size_t)file_size; 81 temp.file_ = ::CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ, 83 MARISA_ALPHA_THROW_IF(temp.file_ == NULL, MARISA_ALPHA_IO_ERROR); 85 temp.map_ = ::CreateFileMapping(temp.file_, NULL, PAGE_READONLY, 0, 0, NULL); 86 MARISA_ALPHA_THROW_IF(temp.map_ == NULL, MARISA_ALPHA_IO_ERROR); 88 temp.origin_ = ::MapViewOfFile(temp.map_, FILE_MAP_READ, 0, 0, 0); 89 MARISA_ALPHA_THROW_IF(temp.origin_ == NULL, MARISA_ALPHA_IO_ERROR) 107 Mapper temp; local [all...] |
intvector.cc | 58 IntVector temp; local 59 temp.units_.map(mapper); 60 mapper.map(&temp.num_bits_per_int_); 61 mapper.map(&temp.mask_); 62 mapper.map(&temp.size_); 63 temp.swap(this); 89 IntVector temp; local 90 temp.units_.read(reader); 91 reader.read(&temp.num_bits_per_int_); 92 reader.read(&temp.mask_) [all...] |
/cts/apps/CtsVerifier/include/colorchecker/ |
vec3.h | 37 Vec3<T> temp(mRed + param.r(), mGreen + param.g(), mBlue + param.b()); 38 return temp; 42 Vec3<T> temp(mRed - param.r(), mGreen - param.g(), mBlue - param.b()); 43 return temp; 47 Vec3<T> temp(mRed * param, mGreen * param, mBlue * param); 48 return temp; 53 Vec3<float> temp(mRed * static_cast<U>(param.r()), 56 return temp; 61 Vec3<float> temp; local 63 temp.set(static_cast<float>(mRed) / static_cast<float>(param) 71 Vec3<float> temp; local [all...] |
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_GetLocal.java | 40 File temp = cache.get(url); local 41 if (temp == null) { 43 temp = File.createTempFile("hyts_local", ".tmp", null); 44 temp.deleteOnExit(); 45 FileOutputStream out = new FileOutputStream(temp); 53 cache.put(url, temp); 55 return temp; 60 File temp = cache.get(url); local 61 if (temp == null) { 63 temp = File.createTempFile("hyts_local", ".tmp", null) [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_GetLocal.java | 40 File temp = cache.get(url); local 41 if (temp == null) { 43 temp = File.createTempFile("hyts_local", ".tmp", null); 44 temp.deleteOnExit(); 45 FileOutputStream out = new FileOutputStream(temp); 53 cache.put(url, temp); 55 return temp; 60 File temp = cache.get(url); local 61 if (temp == null) { 63 temp = File.createTempFile("hyts_local", ".tmp", null) [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...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
omxVCM4P10_InterpolateLuma_s.s | 78 Temp RN 12 219 ADD Temp, pSrc, srcStep, LSL #1 221 VLD1 dSrc2, [Temp], srcStep 223 VLD1 dSrc3, [Temp] 225 ADD Temp, pDst, dstStep, LSL #1 227 VST1 dDst2[0], [Temp], dstStep 229 VST1 dDst3[0], [Temp] 242 ADD Temp, pDst, dstStep, LSL #1 244 VST1 dResultH2[0], [Temp], dstStep 246 VST1 dResultH3[0], [Temp] [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESedeEngine.java | 110 byte[] temp = new byte[BLOCK_SIZE]; 114 desFunc(workingKey1, in, inOff, temp, 0); 115 desFunc(workingKey2, temp, 0, temp, 0); 116 desFunc(workingKey3, temp, 0, out, outOff); 120 desFunc(workingKey3, in, inOff, temp, 0); 121 desFunc(workingKey2, temp, 0, temp, 0); 122 desFunc(workingKey1, temp, 0, out, outOff);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterStraighten.java | 66 Bitmap temp = bitmap.copy(mConfig, true); local 67 Canvas canvas = new Canvas(temp); 70 float w = temp.getWidth(); 71 float h = temp.getHeight(); 72 float mw = temp.getWidth() / 2.0f; 73 float mh = temp.getHeight() / 2.0f; 81 temp.getPixels(pixels, 0, (int) w, 0, 0, (int) w, (int) h); 83 temp.recycle(); 84 temp = null;
|
/external/clang/utils/analyzer/ |
update_plist_test.pl | 3 require File::Temp; 4 use File::Temp (); 12 # Create a temp file for the new test. 13 my $fh = File::Temp->new(); 17 # Copy the existing temp file, skipping the FileCheck comments.
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
rwupdt.h | 19 Scalar temp, rowj; local 28 temp = givens[i].c() * r(i,j) + givens[i].s() * rowj; 30 r(i,j) = temp; 41 temp = givens[j].c() * b[j] + givens[j].s() * alpha; 43 b[j] = temp;
|
/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
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
Add2_Sat_16x16.c | 32 LVM_INT32 Temp; 36 Temp = ((LVM_INT32) *src) + ((LVM_INT32) *dst); 39 if (Temp > 0x00007FFF) 43 else if (Temp < -0x00008000) 49 *dst = (LVM_INT16)Temp;
|
DelayMix_16x16.c | 37 LVM_INT16 temp; local 42 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) + (LVM_INT32)delay[Offset]) >> 1); 43 *dst = temp; 52 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) - (LVM_INT32)delay[Offset]) >> 1); 53 *dst = temp;
|
Int32RShiftToInt16_Sat_32x16.c | 33 LVM_INT32 temp; local 38 temp = *src >> shift; 41 if (temp > 0x00007FFF) 45 else if (temp < -0x00008000) 51 *dst = (LVM_INT16)temp;
|
LVC_Core_MixHard_2St_D16C31_SAT.c | 35 LVM_INT32 Temp; 47 Temp = (((LVM_INT32)*(src1++) * (LVM_INT32)Current1Short)>>15) + 49 if (Temp > 0x00007FFF) 51 else if (Temp < -0x00008000) 54 *dst++ = (LVM_INT16)Temp;
|
Mac3s_Sat_32x16.c | 35 LVM_INT32 srcval,temp, dInVal, dOutVal; local 43 MUL32x16INTO32(srcval,val,temp,15) 46 dOutVal = temp + dInVal; 49 if ((((dOutVal ^ temp) & (dOutVal ^ dInVal)) >> 31)!=0) /* overflow / underflow */ 51 if(temp<0)
|
/external/icu4c/test/intltest/ |
srchtest.cpp | 467 UChar temp[128]; local 474 u_unescape(search->text, temp, 128); 476 text.setTo(temp); 477 u_unescape(search->pattern, temp, 128); 479 pattern.setTo(temp); 524 UChar temp[128]; local 533 u_unescape(search->text, temp, 128); 535 text.setTo(temp); 536 u_unescape(search->pattern, temp, 128); 538 pattern.setTo(temp); 577 UChar temp[128]; local 870 UChar temp[128]; local 1003 UChar temp[128]; local 1047 UChar temp[128]; local 1111 UChar temp[512]; local 1207 UChar temp[128]; local 1296 UChar temp[128]; local 1417 UChar temp[128]; local 1481 UChar temp[128]; local 1595 UChar temp[128]; local 1633 UChar temp[128]; local 1674 UChar temp[128]; local 1754 UChar temp[128]; local 1859 UChar temp[128]; local 1902 UChar temp[128]; local 1964 UChar temp[128]; local 2031 UChar temp[128]; local 2123 UChar temp[128]; local 2199 UChar temp[128]; local [all...] |
/external/eigen/blas/ |
ctbmv.f | 146 COMPLEX TEMP 213 TEMP = X(J) 216 X(I) = X(I) + TEMP*A(L+I,J) 225 TEMP = X(JX) 229 X(IX) = X(IX) + TEMP*A(L+I,J) 242 TEMP = X(J) 245 X(I) = X(I) + TEMP*A(L+I,J) 255 TEMP = X(JX) 259 X(IX) = X(IX) + TEMP*A(L+I,J) 277 TEMP = X(J [all...] |
ztbmv.f | 146 DOUBLE COMPLEX TEMP 213 TEMP = X(J) 216 X(I) = X(I) + TEMP*A(L+I,J) 225 TEMP = X(JX) 229 X(IX) = X(IX) + TEMP*A(L+I,J) 242 TEMP = X(J) 245 X(I) = X(I) + TEMP*A(L+I,J) 255 TEMP = X(JX) 259 X(IX) = X(IX) + TEMP*A(L+I,J) 277 TEMP = X(J [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/ |
omxVCCOMM_ExpandFrame_I_s.s | 53 Temp RN 14 75 SUB Temp, iFrameHeight, #1 ;// H-1 76 MUL Temp, iPlaneStep, Temp ;// (H-1)*Step 77 ADD pBot, Temp, pSrcDstPlane ;// BPtr = TPtr + (H-1)*Step 78 MOV Temp, iFrameWidth ;// Outer loop counter 118 SUBS Temp, Temp, #16 149 SUBS Temp, Temp, #1 [all...] |
/external/elfutils/tests/ |
run-strip-test.sh | 31 debugout=${debugfile:+-f testfile.debug.temp -F $debugfile} 34 test x$stripped = xtestfile.temp || testfiles $stripped $debugfile 36 tempfiles testfile.temp testfile.debug.temp testfile.unstrip 38 testrun ../src/strip -o testfile.temp $debugout $original 42 cmp $stripped testfile.temp || status=$? 45 testrun ../src/elflint -q testfile.temp || status=$? 48 cmp $debugfile testfile.debug.temp || status=$? 51 testrun ../src/elflint -q -d testfile.debug.temp || status=$? 54 testrun ../src/unstrip -o testfile.unstrip testfile.temp testfile.debug.tem [all...] |