/external/quake/quake/src/WinQuake/ |
d_sky.cpp | 37 float wu, wv, temp;
local 41 temp = (float)r_refdef.vrect.width;
43 temp = (float)r_refdef.vrect.height;
45 wu = 8192.0 * (float)(u-((int)vid.width>>1)) / temp;
46 wv = 8192.0 * (float)(((int)vid.height>>1)-v) / temp;
54 temp = skytime*skyspeed; // TODO: add D_SetupFrame & set this there
55 *s = (int)((temp + 6*(SKYSIZE/2-1)*end[0]) * 0x10000);
56 *t = (int)((temp + 6*(SKYSIZE/2-1)*end[1]) * 0x10000);
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
LVM_Polynomial.c | 49 LVM_INT32 Y,A,XTemp,Temp,sign; 56 Temp=-1; 57 sign=Temp; 62 sign*=Temp; 75 MUL32x32INTO32(A,XTemp,Temp,31) 76 Y+=Temp; 78 MUL32x32INTO32(XTemp,X,Temp,31) 79 XTemp=Temp;
|
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/ |
FloatToFixed.java | 233 Vector3f temp = new Vector3f(); local 236 BufferUtils.populateFromBuffer(temp, input, i); 239 temp.multLocal(127).addLocal(0.5f, 0.5f, 0.5f); 242 byte v1 = (byte) temp.getX(); 243 byte v2 = (byte) temp.getY(); 244 byte v3 = (byte) temp.getZ(); 257 Vector2f temp = new Vector2f(); local 271 BufferUtils.populateFromBuffer(temp, input, i); 274 sb.put( (short) (temp.getX()*Short.MAX_VALUE) ); 275 sb.put( (short) (temp.getY()*Short.MAX_VALUE) ) 319 Vector3f temp = new Vector3f(); local [all...] |
/cts/apps/CtsVerifier/include/colorchecker/ |
vec2.h | 34 Vec2<T> temp(mX + param.x(), mY + param.y()); 35 return temp; 39 Vec2<T> temp(mX - param.x(), mY - param.y()); 40 return temp;
|
/external/chromium/base/ |
atomicops_internals_x86_gcc.h | 51 Atomic32 temp = increment; local 53 : "+r" (temp), "+m" (*ptr) 55 // temp now holds the old value of *ptr 56 return temp + increment; 61 Atomic32 temp = increment; local 63 : "+r" (temp), "+m" (*ptr) 65 // temp now holds the old value of *ptr 69 return temp + increment; 175 Atomic64 temp = increment; local 177 : "+r" (temp), "+m" (*ptr 185 Atomic64 temp = increment; local [all...] |
/external/chromium/base/mac/ |
scoped_cftyperef.h | 64 CFT temp = that.object_; local 66 object_ = temp; 73 CFT temp = object_; variable 75 return temp;
|
/external/dropbear/libtomcrypt/src/ciphers/aes/ |
aes.c | 95 static ulong32 setup_mix(ulong32 temp) 97 return (Te4_3[byte(temp, 2)]) ^ 98 (Te4_2[byte(temp, 1)]) ^ 99 (Te4_1[byte(temp, 0)]) ^ 100 (Te4_0[byte(temp, 3)]); 105 static ulong32 setup_mix2(ulong32 temp) 107 return Td0(255 & Te4[byte(temp, 3)]) ^ 108 Td1(255 & Te4[byte(temp, 2)]) ^ 109 Td2(255 & Te4[byte(temp, 1)]) ^ 110 Td3(255 & Te4[byte(temp, 0)]) 126 ulong32 temp, *rk; local [all...] |
/external/qemu/android/utils/ |
tempfile.h | 16 /** TEMP FILE SUPPORT 33 extern const char* tempfile_path( TempFile* temp ); 34 extern void tempfile_close( TempFile* temp ); 36 /** TEMP FILE CLEANUP
|
/external/v8/src/ |
atomicops_internals_x86_gcc.h | 73 Atomic32 temp = increment; local 75 : "+r" (temp), "+m" (*ptr) 77 // temp now holds the old value of *ptr 78 return temp + increment; 83 Atomic32 temp = increment; local 85 : "+r" (temp), "+m" (*ptr) 87 // temp now holds the old value of *ptr 91 return temp + increment; 197 Atomic64 temp = increment; local 199 : "+r" (temp), "+m" (*ptr 207 Atomic64 temp = increment; local [all...] |
/external/webkit/LayoutTests/http/tests/resources/ |
reset-temp-file.php | 5 echo "FAIL: No temp dir was returned.\n";
|
touch-temp-file.php | 5 echo "FAIL: No temp dir was returned.\n";
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
tns.c | 98 Word32 temp, shift; local 105 temp = lineNumber - bandStartOffset[numOfBands] ; 106 if (temp >= 0) 111 temp = bandStartOffset[band + 1] - lineNumber; 112 if (temp > 0) break; 115 temp = (lineNumber - bandStartOffset[band]); 116 temp = (temp - (bandStartOffset[band + 1] - lineNumber)); 117 if ( temp > 0 ) 277 Word32 temp; local 363 Word32 i, temp; local 402 Word32 temp; local 722 Word32 temp, workBuffer0; local 761 Word32 temp; local 776 Word32 temp; local 790 Word32 temp; local 814 Word32 temp; local 839 Word32 temp; local [all...] |
/frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/ |
Benchmark.java | 36 int[] temp; local 37 temp = new int[1]; 43 aout.copy1DRangeFrom(0, 1, temp); 54 aout.copy1DRangeFrom(0, 1, temp);
|
/sdk/emulator/opengl/tests/event_injector/ |
emulator-console.c | 86 char temp[64]; local 87 int ret = socket_recv(con->fd, temp, sizeof temp); 97 DD("Console received: '%.*s'", ret, temp); 307 char temp[128]; local 310 snprintf(temp, sizeof temp, 313 emulatorConsole_send(con, temp); 326 char temp[128]; local 329 snprintf(temp, sizeof temp 340 char temp[128]; local [all...] |
/external/libgsm/src/ |
rpe.c | 267 word xmax, xmaxc, temp, temp1, temp2; local 276 temp = xM[i]; 277 temp = GSM_ABS(temp); 278 if (temp > xmax) xmax = temp; 285 temp = SASR( xmax, 9 ); 290 itest |= (temp <= 0); 291 temp = SASR( temp, 1 ) 361 word temp, temp1, temp2, temp3; local [all...] |
/hardware/invensense/libsensors_iio/software/simple_apps/mpu_iio/ |
iio_utils.h | 260 struct iio_channel_info temp; local 266 temp = (*ci_array)[y + 1]; 268 (*ci_array)[y] = temp; 439 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local 440 if (temp == NULL) 442 sprintf(temp, "%s/%s", basedir, filename); 443 sysfsfp = fopen(temp, "w"); 445 printf("failed to open %s\n", temp); 452 sysfsfp = fopen(temp, "r"); 454 printf("failed to open %s\n", temp); 486 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local 545 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local 567 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local [all...] |
/external/clang/test/CodeGen/ |
2002-07-14-MiscTests.c | 29 static char *temp; variable 36 temp = (char *) malloc(32768); 38 return temp;
|
/external/clang/test/SemaTemplate/ |
temp_arg_type.cpp | 4 // [temp.arg.type]p1 24 // [temp.arg.type]p2 41 // FIXME: [temp.arg.type]p3. The check doesn't really belong here (it
|
/external/harfbuzz_ng/contrib/python/lib/ |
fontconfig.pyx | 24 cdef FcPattern *temp 27 temp = FcNameParse(<FcChar8 *>name) 28 self._pattern = FcFontMatch(FcConfigGetCurrent(), temp, &res)
|
/external/icu4c/common/ |
ustrfmt.c | 34 UChar temp; local 52 temp = buffer[(length-1) - j]; 54 buffer[j] = temp;
|
/external/llvm/test/CodeGen/PowerPC/ |
2007-01-15-AsmDialect.ll | 7 %temp = alloca i32, align 4 ; <i32*> [#uses=2] 18 store i32 %tmp5, i32* %temp 19 %tmp6 = load i32* %temp ; <i32> [#uses=1]
|
vec_splat_constant.ll | 11 %temp = alloca <16 x i8> ; <<16 x i8>*> [#uses=2] 14 store <16 x i8> <i8 0, i8 0, i8 0, i8 14, i8 0, i8 0, i8 0, i8 14, i8 0, i8 0, i8 0, i8 14, i8 0, i8 0, i8 0, i8 14>, <16 x i8>* %temp, align 16 16 %1 = load <16 x i8>* %temp, align 16 ; <<16 x i8>> [#uses=1]
|
/external/llvm/test/Transforms/ScalarRepl/ |
2008-06-22-LargeArray.ll | 9 %temp = alloca [200 x i8] 10 %temp1 = bitcast [200 x i8]* %temp to i8* 12 %temp3 = bitcast [200 x i8]* %temp to i8*
|
/frameworks/base/graphics/java/android/graphics/ |
TemporaryBuffer.java | 40 public static void recycle(char[] temp) { 41 if (temp.length > 1000) return; 44 sTemp = temp;
|
/packages/apps/Camera/src/com/android/camera/ |
IntArray.java | 27 int temp[] = new int[mSize + mSize]; local 28 System.arraycopy(mData, 0, temp, 0, mSize); 29 mData = temp;
|