HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 301 - 325 of 3860) sorted by null

<<11121314151617181920>>

  /external/sonivox/arm-wt-22k/lib_src/
eas_wtsynth.c 519 EAS_I32 temp; local
553 temp = pChannel->staticPitch + pWTRegion->tuning;
557 temp += pVoice->note * 100;
559 temp += (pVoice->note + pSynth->globalTranspose) * 100;
560 intFrame.frame.phaseIncrement = WT_UpdatePhaseInc(pWTVoice, pArt, pChannel, temp);
561 temp = pWTVoice->loopEnd - pWTVoice->loopStart;
562 if (temp != 0) {
563 temp = temp << NUM_PHASE_FRAC_BITS;
564 if (intFrame.frame.phaseIncrement > temp) {
637 EAS_I32 temp; local
748 EAS_I32 temp; local
802 EAS_I32 temp; local
895 EAS_I32 temp; local
1249 EAS_I32 temp; local
    [all...]
  /art/test/550-checker-multiply-accumulate/src/
Main.java 178 int temp = left * right; local
179 return temp | (acc + temp);
236 long temp = left * right; local
237 return (acc + temp) + (acc - temp);
511 int temp = 12345 * array1[j]; local
512 array2[j] -= temp;
513 array1[j] = temp;
526 long temp = 12345 * array1[j] 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/curl/packages/NetWare/
get_exp.awk 51 temp = exports[i]
52 while ((j >= increment+1) && (exports[j-increment] > temp)) {
56 exports[j] = temp
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LMpar.h 40 Scalar temp, paru; local
88 temp = wa1.blueNorm();
89 parl = fp / m_delta / temp / temp;
122 temp = fp;
128 if (abs(fp) <= Scalar(0.1) * m_delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
136 temp = wa1[j];
138 wa1[i] -= s.coeff(i,j) * temp;
140 temp = wa1.blueNorm()
    [all...]
  /external/icu/icu4c/source/common/
ustrfmt.cpp 36 UChar temp; local
54 temp = buffer[(length-1) - j];
56 buffer[j] = temp;
  /external/ltp/testcases/commands/wc/
wc01.sh 41 eval $wc_cmd > temp 2>&1
43 grep -q -E "unknown option|invalid option" temp
53 local act_out=`cat temp | awk '{printf $1}'`
  /external/ltp/testcases/kernel/syscalls/nftw/
tools64.c 35 extern FILE *temp;
69 temp = stderr;
74 fprintf(temp, "ERROR: setup_path function failed\n");
83 fprintf(temp,
93 fprintf(temp,
103 fprintf(temp,
112 fprintf(temp,
125 fprintf(temp, "ERROR: setup_path function failed\n");
133 fprintf(temp, "ERROR: setup_path function failed\n");
141 fprintf(temp, "ERROR: setup_path function failed\n")
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
opj_intmath.h 245 OPJ_INT64 temp = __emul(a, b); local
247 OPJ_INT64 temp = (OPJ_INT64) a * (OPJ_INT64) b ;
249 temp += 4096;
250 assert((temp >> 13) <= (OPJ_INT64)0x7FFFFFFF);
251 assert((temp >> 13) >= (-(OPJ_INT64)0x7FFFFFFF - (OPJ_INT64)1));
252 return (OPJ_INT32)(temp >> 13);
258 OPJ_INT64 temp = __emul(a, b); local
260 OPJ_INT64 temp = (OPJ_INT64) a * (OPJ_INT64) b ;
262 temp += 4096;
263 assert((temp >> (13 + 11 - T1_NMSEDEC_FRACBITS)) <= (OPJ_INT64)0x7FFFFFFF)
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_x86_gcc.h 77 Atomic32 temp = increment; local
79 : "+r" (temp), "+m" (*ptr)
81 // temp now holds the old value of *ptr
82 return temp + increment;
87 Atomic32 temp = increment; local
89 : "+r" (temp), "+m" (*ptr)
91 // temp now holds the old value of *ptr
95 return temp + increment;
201 Atomic64 temp = increment; local
203 : "+r" (temp), "+m" (*ptr
211 Atomic64 temp = increment; local
    [all...]
  /external/v4l2_codec2/vda/
bit_reader_core.h 59 uint64_t temp; local
60 bool ret = ReadBitsInternal(num_bits, &temp);
61 *out = static_cast<T>(temp);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
window32_w32.c 34 int32_t temp; local
54 temp = ((x_hi * y_hi) << 1) + ((x_hi * y_low) >> 14);
56 z[i] = temp + ((x_low * y_hi) >> 14);
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
preemph.cpp 246 Word16 temp; local
252 temp = *p1;
266 st->mem_pre = temp;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/util/
IntArray.java 27 int temp[] = new int[mSize + mSize]; local
28 System.arraycopy(mData, 0, temp, 0, mSize);
29 mData = temp;
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/
NullArgsTestCase.java 59 Object[] temp = Arrays.copyOf(args, args.length); local
60 temp[i] = null;
62 sink.accept(temp);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
IntArray.java 27 int temp[] = new int[mSize + mSize]; local
28 System.arraycopy(mData, 0, temp, 0, mSize);
29 mData = temp;
  /packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/
IntArray.java 27 int temp[] = new int[mSize + mSize]; local
28 System.arraycopy(mData, 0, temp, 0, mSize);
29 mData = temp;
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_x86_gcc.h 77 Atomic32 temp = increment; local
79 : "+r" (temp), "+m" (*ptr)
81 // temp now holds the old value of *ptr
82 return temp + increment;
87 Atomic32 temp = increment; local
89 : "+r" (temp), "+m" (*ptr)
91 // temp now holds the old value of *ptr
95 return temp + increment;
201 Atomic64 temp = increment; local
203 : "+r" (temp), "+m" (*ptr
211 Atomic64 temp = increment; local
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_x86_gcc.h 77 Atomic32 temp = increment; local
79 : "+r" (temp), "+m" (*ptr)
81 // temp now holds the old value of *ptr
82 return temp + increment;
87 Atomic32 temp = increment; local
89 : "+r" (temp), "+m" (*ptr)
91 // temp now holds the old value of *ptr
95 return temp + increment;
201 Atomic64 temp = increment; local
203 : "+r" (temp), "+m" (*ptr
211 Atomic64 temp = increment; local
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_x86_gcc.h 77 Atomic32 temp = increment; local
79 : "+r" (temp), "+m" (*ptr)
81 // temp now holds the old value of *ptr
82 return temp + increment;
87 Atomic32 temp = increment; local
89 : "+r" (temp), "+m" (*ptr)
91 // temp now holds the old value of *ptr
95 return temp + increment;
201 Atomic64 temp = increment; local
203 : "+r" (temp), "+m" (*ptr
211 Atomic64 temp = increment; local
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
atomicops_internals_x86_gcc.h 77 Atomic32 temp = increment; local
79 : "+r" (temp), "+m" (*ptr)
81 // temp now holds the old value of *ptr
82 return temp + increment;
87 Atomic32 temp = increment; local
89 : "+r" (temp), "+m" (*ptr)
91 // temp now holds the old value of *ptr
95 return temp + increment;
201 Atomic64 temp = increment; local
203 : "+r" (temp), "+m" (*ptr
211 Atomic64 temp = increment; local
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
atomicops_internals_x86_gcc.h 77 Atomic32 temp = increment; local
79 : "+r" (temp), "+m" (*ptr)
81 // temp now holds the old value of *ptr
82 return temp + increment;
87 Atomic32 temp = increment; local
89 : "+r" (temp), "+m" (*ptr)
91 // temp now holds the old value of *ptr
95 return temp + increment;
201 Atomic64 temp = increment; local
203 : "+r" (temp), "+m" (*ptr
211 Atomic64 temp = increment; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
AdtPluginTest.java 43 File temp = File.createTempFile("test", ".txt"); local
45 AdtPlugin.writeFile(temp, myContent);
46 String readBack = AdtPlugin.readFile(temp);
  /system/media/audio_utils/
tinysndfile.c 32 uint8_t *temp; // realloc buffer used for shrinking 16 bits to 8 bits and byte-swapping member in struct:SNDFILE_
77 handle->temp = NULL;
369 handle->temp = NULL;
402 free(handle->temp);
431 void *temp = NULL; local
434 temp = malloc(desiredBytes);
435 actualBytes = fread(temp, sizeof(char), desiredBytes, handle->stream);
450 memcpy_to_i16_from_i32(ptr, (const int *) temp, actualFrames * handle->info.channels);
451 free(temp);
454 memcpy_to_i16_from_float(ptr, (const float *) temp, actualFrames * handle->info.channels)
480 void *temp = NULL; local
530 void *temp = NULL; local
    [all...]
  /external/google-breakpad/src/processor/
binarystream.cc 64 uint16_t temp; local
65 stream_.read((char *)&temp, 2);
67 u16 = ntohs(temp);
72 uint32_t temp; local
73 stream_.read((char *)&temp, 4);
75 u32 = ntohl(temp);

Completed in 427 milliseconds

<<11121314151617181920>>