Searched refs:temp (Results 76 - 100 of 896) sorted by relevance

1234567891011>>

/external/quake/quake/src/QW/client/
H A Dd_sky.c37 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);
/external/quake/quake/src/WinQuake/
H A Dd_sky.cpp37 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);
/external/qemu/android/avd/
H A Dinfo.c125 IMAGE_STATE_TEMPORARY, /* copied to temp file (no lock needed) */
244 char temp[PATH_MAX], *p = temp, *end= p+sizeof temp; local
250 p = bufprint(temp, end, "%s%d", SEARCH_PREFIX, nn+1 );
254 path = iniFile_getString(configIni, temp, NULL);
258 p = bufprint(temp, end, "%s/%s", sdkRootPath, path);
260 path = ASTRDUP(temp);
293 char temp[PATH_MAX], *p=temp, *en local
309 char temp[MAX_PATH], *p=temp, *end=p+sizeof(temp); local
329 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
384 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
568 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
634 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
798 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
901 char temp[PATH_MAX], *p = temp, *end = p + sizeof(temp); local
1090 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
[all...]
/external/libgsm/src/
H A Dshort_term.c153 register word temp; local
158 /* temp = GSM_ABS( *LARp );
160 * if (temp < 11059) temp <<= 1;
161 * else if (temp < 20070) temp += 11059;
162 * else temp = GSM_ADD( temp >> 2, 26112 );
164 * *LARp = *LARp < 0 ? -temp : temp;
242 register float sav, di, temp; local
321 register float scalef = 3.0517578125e-5, temp; local
[all...]
/external/qemu/android/utils/
H A Dfilelock.c56 ** temp - a temporary file make unique with mkstemp
59 ** create 'temp' and store our pid in it
60 ** attemp to link 'lock' to 'temp'
62 ** unlink 'temp'
77 char* temp; member in struct:FileLock
120 pidfile_fd = open( lock->temp, O_RDONLY );
144 D( "could not read pid file '%s'", lock->temp );
190 pidfile_fd = open( lock->temp, O_WRONLY | O_CREAT | O_TRUNC );
193 if ( path_delete_file( lock->temp ) < 0 ) {
194 D( "could not remove '%s': %s\n", lock->temp, strerro
[all...]
H A Dtimezone.c207 char temp[2]; local
210 do { ret = read(fd1, &temp[0], 1); } while (ret < 0 && errno == EINTR);
213 do { ret = read(fd2, &temp[1], 1); } while (ret < 0 && errno == EINTR);
216 if (temp[0] != temp[1])
310 char temp[ PATH_MAX ]; local
346 char *p = temp, *end = p + sizeof(temp);
349 if (p >= end || access( temp, R_OK ) != 0 ) {
351 LOCALTIME_FILE1, temp );
[all...]
/external/chromium/chrome/common/extensions/
H A Dextension_file_util_unittest.cc19 ScopedTempDir temp; local
20 ASSERT_TRUE(temp.CreateUniqueTempDir());
25 FilePath src = temp.path().AppendASCII(extension_id);
29 FilePath all_extensions = temp.path().AppendASCII("extensions");
104 ScopedTempDir temp; local
105 ASSERT_TRUE(temp.CreateUniqueTempDir());
107 FilePath src_path = temp.path().AppendASCII("some_dir");
114 EXPECT_TRUE(extension_file_util::CheckForIllegalFilenames(temp.path(),
119 ScopedTempDir temp; local
120 ASSERT_TRUE(temp
131 ScopedTempDir temp; local
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMAxisIteratorBase.java83 final boolean temp = _isRestartable;
89 _isRestartable = temp;
134 final int temp = _position; // Save state
145 _position = temp;
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dr1mpyq.h15 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/emma/core/java12/com/vladium/emma/
H A DAppLoggers.java55 Set temp = null;
62 temp = new HashSet (tokenizer.countTokens ());
65 temp.add (tokenizer.nextToken ());
70 filter = temp;
/external/icu4c/test/intltest/
H A Dlocnmtst.cpp85 UnicodeString temp; local
87 ldn->localeDisplayName("de_DE", temp);
89 test_assert_equal("Deutsch (Deutschland)", temp);
93 UnicodeString temp; local
95 ldn->localeDisplayName("en_GB", temp);
97 test_assert_equal("British English", temp);
101 UnicodeString temp; local
106 ldn->localeDisplayName(locname, temp);
108 test_assert_equal(target, temp);
224 UnicodeString temp; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DShellSorter.java62 Type temp;
72 temp = array[j];
77 } while ( j != start && comparator.compare(array[k], temp) > 0 );
78 array[j] = temp;
/external/skia/include/utils/win/
H A DSkTScopedComPtr.h52 T* temp = this->fPtr; local
54 that.fPtr = temp;
58 T* temp = this->fPtr; local
60 return temp;
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_imaadpcm.c283 EAS_I32 temp; local
289 temp = 0;
310 temp = (msecs * pState->sampleRate);
311 temp = (temp >> 10) + ((temp * 49) >> 21);
314 temp += secs * pState->sampleRate;
317 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x2380b977, 0x00000006 , time, temp);
321 if ((temp > pState->byteCount) && (pState->loopSamples != 0))
338 temp
[all...]
H A Deas_rtttl.c265 EAS_I32 temp; local
357 if ((result = RTTTL_GetNumber(pEASData->hwInstData, pData, &temp)) != EAS_SUCCESS)
361 if ((temp >= 4) && (temp <= 7))
363 octave = (EAS_U8) temp;
367 else if ((temp >= 25) && (temp <= 900))
369 pData->tick = TICK_CONVERT / (EAS_U32) temp;
829 EAS_I8 temp; local
838 temp
934 EAS_INT temp; local
981 EAS_I8 temp; local
1127 EAS_I8 temp; local
1173 EAS_I8 temp; local
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_imaadpcm.c283 EAS_I32 temp; local
289 temp = 0;
310 temp = (msecs * pState->sampleRate);
311 temp = (temp >> 10) + ((temp * 49) >> 21);
314 temp += secs * pState->sampleRate;
317 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x2380b977, 0x00000006 , time, temp);
321 if ((temp > pState->byteCount) && (pState->loopSamples != 0))
338 temp
[all...]
H A Deas_rtttl.c265 EAS_I32 temp; local
357 if ((result = RTTTL_GetNumber(pEASData->hwInstData, pData, &temp)) != EAS_SUCCESS)
361 if ((temp >= 4) && (temp <= 7))
363 octave = (EAS_U8) temp;
367 else if ((temp >= 25) && (temp <= 900))
369 pData->tick = TICK_CONVERT / (EAS_U32) temp;
829 EAS_I8 temp; local
838 temp
934 EAS_INT temp; local
981 EAS_I8 temp; local
1127 EAS_I8 temp; local
1173 EAS_I8 temp; local
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imaadpcm.c283 EAS_I32 temp; local
289 temp = 0;
310 temp = (msecs * pState->sampleRate);
311 temp = (temp >> 10) + ((temp * 49) >> 21);
314 temp += secs * pState->sampleRate;
317 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x2380b977, 0x00000006 , time, temp);
321 if ((temp > pState->byteCount) && (pState->loopSamples != 0))
338 temp
[all...]
H A Deas_rtttl.c265 EAS_I32 temp; local
357 if ((result = RTTTL_GetNumber(pEASData->hwInstData, pData, &temp)) != EAS_SUCCESS)
361 if ((temp >= 4) && (temp <= 7))
363 octave = (EAS_U8) temp;
367 else if ((temp >= 25) && (temp <= 900))
369 pData->tick = TICK_CONVERT / (EAS_U32) temp;
829 EAS_I8 temp; local
838 temp
934 EAS_INT temp; local
981 EAS_I8 temp; local
1127 EAS_I8 temp; local
1173 EAS_I8 temp; local
[all...]
/external/iproute2/lib/
H A Dll_addr.c76 int temp; local
82 if (sscanf(arg, "%x", &temp) != 1) {
86 if (temp < 0 || temp > 255) {
90 lladdr[i] = temp;
/external/skia/src/views/
H A DSkProgressBarView.cpp68 int32_t temp; local
69 if (dom.findS32(node, "max", &temp))
70 this->setMax(temp);
71 if (dom.findS32(node, "progress", &temp))
72 this->setProgress(temp);
/external/qemu/android/
H A Dhelp.c225 char temp[32], *p = temp, *end = p + sizeof(temp); local
237 len = strlen(temp);
241 PRINTF( " %-*s %s\n", maxw, temp, skin_key_command_description(cmd) );
286 char temp[MAX_PATH]; local
294 bufprint_config_file( temp, temp+sizeof(temp), KEYSET_FILE );
295 PRINTF( " %s\n\n", temp );
1308 char temp[256]; local
1583 char temp[32]; local
1635 char temp[32]; local
[all...]
/external/jpeg/
H A Djcphuff.c318 register int temp, nbits; local
321 temp = entropy->EOBRUN;
323 while ((temp >>= 1))
380 register int temp, temp2; local
408 temp = temp2 - entropy->last_dc_val[ci];
412 temp2 = temp;
413 if (temp < 0) {
414 temp = -temp; /* temp i
467 register int temp, temp2; local
574 register int temp; local
621 register int temp; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djcphuff.c318 register int temp, nbits; local
321 temp = entropy->EOBRUN;
323 while ((temp >>= 1))
380 register int temp, temp2; local
408 temp = temp2 - entropy->last_dc_val[ci];
412 temp2 = temp;
413 if (temp < 0) {
414 temp = -temp; /* temp i
467 register int temp, temp2; local
574 register int temp; local
621 register int temp; local
[all...]
/external/icu4c/test/cintltst/
H A Dcustrtst.c108 UChar temp[512]; local
126 temp[0] = 0;
127 temp[7] = 0xA4; /* Mark the end */
128 u_memcpy(temp,dataTable[i][j], 7);
130 if(temp[7] != 0xA4)
132 if(u_memcmp(temp, dataTable[i][j], 7)!=0)
154 temp[7] = 0;
155 u_memcpy(temp,nullTemp, 7);
156 if(u_memcmp(temp, nullTemp, 7)!=0 || temp[
972 UChar temp[40]; local
[all...]

Completed in 1452 milliseconds

1234567891011>>