HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 251 - 275 of 2511) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGen/
2002-07-14-MiscTests.c 29 static char *temp; variable
36 temp = (char *) malloc(32768);
38 return 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.c 34 UChar temp; local
52 temp = buffer[(length-1) - j];
54 buffer[j] = temp;
  /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/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Impl.java 81 int temp; local
93 temp = arrW[t-3] ^ arrW[t-8] ^ arrW[t-14] ^ arrW[t-16];
94 arrW[t] = ( temp<<1 ) | ( temp>>>31 );
99 temp = ( ( a<<5 ) | ( a>>>27 ) ) +
106 a = temp;
110 temp = ((( a<<5 ) | ( a>>>27 ))) + (b ^ c ^ d) + (e + arrW[t] + 0x6ED9EBA1) ;
115 a = temp;
119 temp = (( a<<5 ) | ( a>>>27 )) + ((b & c) | (b & d) | (c & d)) +
125 a = temp;
    [all...]
  /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/Launcher3/WallpaperPicker/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;
  /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);
  /developers/build/
github-update 13 mkdir github-temp
14 cd github-temp
69 rm -rf ./github-temp
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/base/
atomicops_internals_arm64_gcc.h 39 int32_t temp; local
46 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
47 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
50 [temp]"=&r" (temp),
63 int32_t temp; local
68 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
69 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
71 [temp]"=&r" (temp),
83 int32_t temp; local
175 int32_t temp; local
199 int32_t temp; local
219 int32_t temp; local
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
atomicops_internals_arm64_gcc.h 56 int32_t temp; local
63 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
64 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
67 [temp]"=&r" (temp),
80 int32_t temp; local
85 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
86 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
88 [temp]"=&r" (temp),
100 int32_t temp; local
192 int32_t temp; local
216 int32_t temp; local
236 int32_t temp; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLRenderTarget.cpp 32 GrTextureDesc temp; local
33 temp.fFlags = flags;
34 temp.fWidth = width;
35 temp.fHeight = height;
36 temp.fConfig = config;
37 temp.fSampleCnt = sampleCnt;
38 temp.fOrigin = origin;
39 return temp;
  /external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
test9-expected.cc 20 Foo* temp = param; local
24 Foo* temp = param.get(); local
test9-original.cc 20 Foo* temp = param; local
24 Foo* temp = param.get(); local
  /external/chromium_org/v8/src/base/
atomicops_internals_arm64_gcc.h 29 int32_t temp; local
36 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
37 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
40 [temp]"=&r" (temp),
53 int32_t temp; local
58 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
59 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
61 [temp]"=&r" (temp),
73 int32_t temp; local
179 int32_t temp; local
203 int32_t temp; local
223 int32_t temp; local
    [all...]
  /external/skia/src/gpu/gl/
GrGLRenderTarget.cpp 31 GrTextureDesc temp; local
32 temp.fFlags = flags;
33 temp.fWidth = width;
34 temp.fHeight = height;
35 temp.fConfig = config;
36 temp.fSampleCnt = sampleCnt;
37 temp.fOrigin = origin;
38 return temp;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
toaiff.py 70 for temp in temps[:]:
71 if temp != ret:
73 os.unlink(temp)
76 temps.remove(temp)
104 (fd, temp) = tempfile.mkstemp()
106 temps.append(temp)
107 sts = table[ftype].copy(fname, temp)
110 return temp
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
toaiff.py 70 for temp in temps[:]:
71 if temp != ret:
73 os.unlink(temp)
76 temps.remove(temp)
104 (fd, temp) = tempfile.mkstemp()
106 temps.append(temp)
107 sts = table[ftype].copy(fname, temp)
110 return temp
  /external/libgsm/src/
short_term.c 153 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/chromium_org/third_party/opus/src/silk/float/
find_LTP_FLP.c 48 silk_float *b_ptr, temp, *WLTP_ptr; local
75 temp = Wght[ k ] / ( nrg[ k ] * Wght[ k ] + 0.01f * subfr_length );
76 silk_scale_vector_FLP( WLTP_ptr, temp, LTP_ORDER * LTP_ORDER );
108 temp = 1e-3f;
110 temp += w[ k ];
116 m = m / temp;
121 temp = 0;
124 temp += delta_b[ i ];
126 temp = g / temp;
    [all...]
  /external/libopus/silk/float/
find_LTP_FLP.c 48 silk_float *b_ptr, temp, *WLTP_ptr; local
75 temp = Wght[ k ] / ( nrg[ k ] * Wght[ k ] + 0.01f * subfr_length );
76 silk_scale_vector_FLP( WLTP_ptr, temp, LTP_ORDER * LTP_ORDER );
108 temp = 1e-3f;
110 temp += w[ k ];
116 m = m / temp;
121 temp = 0;
124 temp += delta_b[ i ];
126 temp = g / temp;
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
qpisf_2s.c 66 Word32 i, k, temp, min_err, distance; local
87 temp = min_err;
89 temp = vo_L_add(temp, min_err);
91 temp = vo_L_add(temp, min_err);
93 if(temp < distance)
95 distance = temp;
117 temp = min_err;
119 temp = vo_L_add(temp, min_err)
156 Word32 temp, min_err, distance; local
451 Word16 temp, *p_dico; local
498 Word16 temp, *p_dico; local
    [all...]

Completed in 3813 milliseconds

<<11121314151617181920>>