/external/llvm/tools/llvm-config/ |
Makefile | 55 > temp.sed 57 >> temp.sed 59 >> temp.sed 61 >> temp.sed 63 >> temp.sed 65 >> temp.sed 67 >> temp.sed 69 >> temp.sed 71 >> temp.sed 73 >> temp.se [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_pipe_vs.c | 55 "DCL TEMP[0..4]\n" 64 " MOV TEMP[2], IMM[0]\n" 66 " MOV TEMP[2].xyz, IN[2]\n" 67 " MOV TEMP[2].xyz, IN[0]\n" 68 " MOV TEMP[2].xyz, IN[1]\n" 70 " MUL TEMP[1], IMM[3], TEMP[2].yyyy\n" 71 " MAD TEMP[3], IMM[2], TEMP[2].xxxx, TEMP[1]\n [all...] |
/external/sonivox/arm-wt-22k/lib_src/ |
eas_pan.c | 63 EAS_INT temp; local 78 temp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle); 79 temp = COEFF_PAN_G0 + FMUL_15x15(temp, netAngle); 81 if (temp > SYNTH_FULL_SCALE_EG1_GAIN) 82 temp = SYNTH_FULL_SCALE_EG1_GAIN; 83 else if (temp < 0) 84 temp = 0; 86 *pGainRight = (EAS_I16) temp; 89 temp = -EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle) [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/ |
h264parse_bsd.c | 36 uint32_t temp = 0, match = 0, noOfBits = 0, count = 0;
local 59 bits_operation_result = viddec_pm_peek_bits(parent, &temp, noOfBits);
62 temp = (temp << bits_offset);
63 if(temp!=0)
72 bits_operation_result = viddec_pm_peek_bits(parent, &temp, 8);
81 if(temp != 0)
85 while(((temp & 0x80) != 0x80) && (count <= noOfBits))
88 temp = temp <<1; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
GraphicsUtilitiesTest.java | 138 int[] temp = new int[baseData.width]; local 142 GraphicsUtilities.getVerticalPixels(null, 0, 0, 1, temp); 163 GraphicsUtilities.getVerticalPixels(baseData, -1, 0, 1, temp); 170 GraphicsUtilities.getVerticalPixels(baseData, 0, -1, 1, temp); 177 GraphicsUtilities.getVerticalPixels(baseData, 0, 0, 0, temp); 184 GraphicsUtilities.getVerticalPixels(baseData, baseData.width, 0, baseData.height, temp); 192 .getVerticalPixels(baseData, 0, baseData.height, baseData.height, temp); 199 GraphicsUtilities.getVerticalPixels(baseData, 0, 1, baseData.height, temp); 212 int[] temp = new int[baseData.width]; local 214 GraphicsUtilities.getVerticalPixels(baseData, 0, 0, baseData.height, temp); 228 int[] temp = new int[baseData.width]; local 303 int[] temp = new int[baseData.width]; local 309 assertEquals(baseData.getPixel(x, 0), temp[x]); local [all...] |
/external/boringssl/src/crypto/bn/asm/ |
armv4-mont.pl | 268 my ($Z,$Temp)=("q4","q5"); 272 my $temp=&Dlo($Temp); 304 vshl.i64 $temp,`&Dhi("$A0xB")`,#16 307 vadd.u64 $temp,$temp,`&Dlo("$A0xB")` 309 vmul.u32 $Ni,$temp,$M0 329 vmov $Temp,$A0xB 337 vshr.u64 $temp,$temp,#1 [all...] |
/external/libedit/src/ |
filecomplete.c | 79 char *temp; local 85 temp = strchr(txt + 1, '/'); 86 if (temp == NULL) { 87 temp = strdup(txt + 1); 88 if (temp == NULL) 92 len = (size_t)(temp - txt + 1); 93 temp = el_malloc(len * sizeof(*temp)); 94 if (temp == NULL) 96 (void)strncpy(temp, txt + 1, len - 2) 151 char *temp; local 417 Char *temp; local [all...] |
/external/autotest/client/site_tests/platform_TempFS/ |
platform_TempFS.py | 17 Test temp file systems. 23 # The minimum available space we expect on temp filesystems. 24 # TempFS allows 1/2 of Total Memory for each temp fs. Our threshold 45 raise error.TestFail('There were %d temp directory errors' % errors)
|
/external/compiler-rt/unittests/ |
lit.common.unit.cfg | 25 # Propagate the temp directory. Windows requires this because it uses \Windows\ 29 if 'TEMP' in os.environ: 30 config.environment['TEMP'] = os.environ['TEMP']
|
/external/dagger2/ |
deploy_website.sh | 13 DIR=temp-dagger-clone 18 # Clone the current repo into temp folder 21 # Move working directory into temp folder 47 # Delete our temp folder
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
r1mpyq.h | 15 Scalar temp = v_givens[j].c() * a[i+m*j] - v_givens[j].s() * a[i+m*(n-1)]; local 17 a[i+m*j] = temp; 22 Scalar temp = w_givens[j].c() * a[i+m*j] + w_givens[j].s() * a[i+m*(n-1)]; local 24 a[i+m*j] = temp;
|
/external/libchrome/base/mac/ |
scoped_authorizationref.h | 59 AuthorizationRef temp = that.authorization_; local 61 authorization_ = temp; 69 AuthorizationRef temp = authorization_; variable 71 return temp;
|
/external/llvm/test/CodeGen/AArch64/ |
arm64-clrsb.ll | 21 ; CHECK: cls [[TEMP:w[0-9]+]], [[TEMP]] 35 ; CHECK: cls [[TEMP:x[0-9]+]], [[TEMP]]
|
/external/lzma/CPP/Windows/ |
TimeUtils.cpp | 61 unsigned temp;
77 temp = (unsigned)(v / PERIOD_100);
78 if (temp == 4)
79 temp = 3;
80 year += temp * 100;
81 v -= temp * PERIOD_100;
83 temp = v / PERIOD_4;
84 if (temp == 25)
85 temp = 24;
86 year += temp * 4; [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/defs/ |
files.txt | 0 temp
|
/external/mesa3d/src/gallium/tests/graw/ |
fs-fragcoord.c | 109 "DCL TEMP[0]\n" 112 " 0: MOV TEMP[0], IN[0] \n" 113 " 1: MOV TEMP[0].zw, IMM[1].xxxx \n" 114 " 2: MUL OUT[0], TEMP[0], IMM[0] \n" 122 "DCL TEMP[0]\n" 125 " 0: MOV TEMP[0], IN[0] \n" 126 " 1: MOV TEMP[0].zw, IMM[1].xxxx \n" 127 " 2: MUL OUT[0], TEMP[0], IMM[0] \n" 136 "DCL TEMP[0] \n" 139 "0: FRC TEMP[0], IN[0] \n [all...] |
/external/mesa3d/src/glsl/ |
lower_discard.cpp | 42 * temp = false; 45 * temp = cond2; 50 * discard temp; 65 * temp = false; 70 * temp = cond2; 73 * discard temp; 90 * temp = false; 93 * temp = cond2; 97 * temp = cond3; 100 * discard temp; 175 ir_variable *temp = new(mem_ctx) ir_variable(glsl_type::bool_type, local [all...] |
/external/okhttp/okio/ |
deploy_javadoc.sh | 9 DIR=temp-clone 14 # Clone the current repo into temp folder 17 # Move working directory into temp folder 39 # Delete our temp folder
|
/external/skia/include/utils/win/ |
SkTScopedComPtr.h | 64 T* temp = this->fPtr; local 66 that.fPtr = temp; 70 T* temp = this->fPtr; local 72 return temp;
|
/frameworks/base/libs/hwui/utils/ |
StringUtils.h | 44 double temp = d.bytes; local 45 while (temp > 1024 && suffix < 2) { 46 temp /= 1024.0; 49 stream << std::fixed << std::setprecision(2) << temp << SUFFIXES[suffix];
|
/hardware/bsp/intel/peripheral/libmraa/ |
.gitignore | 11 # Temp files
|
/hardware/bsp/intel/peripheral/libupm/src/mhz16/ |
javaupm_mhz16.i | 8 %apply int *OUTPUT { int *gas, int *temp };
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
SharedPreset.java | 32 ImagePreset temp = mIntermediatePreset; local 34 mProducerPreset = temp; 42 ImagePreset temp = mConsumerPreset; local 44 mIntermediatePreset = temp;
|
/development/perftests/panorama/feature_stab/db_vlvm/ |
db_utilities_random.h | 77 int temp,temp2,i,j; local 81 temp=db_RandomInt(r_seed,pool_size-1-i); 85 if(s[j]<=temp) temp++; 89 temp2=temp; 90 temp=s[j]; 94 s[i]=temp;
|
/external/dng_sdk/source/ |
dng_image.cpp | 318 dng_pixel_buffer temp (buffer); 320 temp.fArea = dst1 + (srcArea.TL () - 324 temp.fData = buffer.DirtyPixel (dst1.t, 328 DoGet (temp); 342 dng_pixel_buffer temp (buffer); 344 temp.fArea = dst2 + (srcArea.TL () - 348 temp.fData = buffer.DirtyPixel (dst2.t, 352 DoGet (temp); 366 dng_pixel_buffer temp (buffer); 368 temp.fArea = dst3 + (srcArea.TL () [all...] |