HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 276 - 300 of 2957) sorted by null

<<11121314151617181920>>

  /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);
  /external/lzma/CPP/Common/
StdOutStream.cpp 63 void StdOut_Convert_UString_to_AString(const UString &s, AString &temp)
69 ConvertUnicodeToUTF8(s, temp);
71 UnicodeStringToMultiByte2(temp, s, (UINT)codePage);
74 void CStdOutStream::PrintUString(const UString &s, AString &temp)
76 StdOut_Convert_UString_to_AString(s, temp);
77 *this << (const char *)temp;
  /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...]
  /hardware/ril/libril/
rilSocketQueue.h 103 T* temp = NULL; local
109 temp = this->front;
117 return temp;
139 T* temp; local
146 temp = *ppCur;
148 free(temp);
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
UnicodeSetPerf.java 89 int temp = 0;
92 temp += cp;
111 int temp = 0;
114 temp += cp;
128 int temp = 0;
131 temp += uit.codepoint;
149 int temp = 0;
152 temp += ((Integer)itr.next()).intValue();
  /external/lzma/xz-embedded/
xz_dec_bcj.c 75 } temp; member in struct:xz_dec_bcj
395 * Flush pending filtered data from temp to the output buffer.
397 * data to the beginning of temp.
403 copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos);
404 memcpy(b->out + b->out_pos, s->temp.buf, copy_size);
407 s->temp.filtered -= copy_size;
408 s->temp.size -= copy_size;
409 memmove(s->temp.buf, s->temp.buf + copy_size, s->temp.size)
    [all...]
  /external/pdfium/xfa/src/fxbarcode/common/reedsolomon/
BC_ReedSolomon.cpp 40 CFX_Int32Array temp; local
41 temp.Add(1);
42 temp.Add(m_field->Exp(d - 1));
44 temp_poly.Init(m_field, &temp, e);
82 CBC_AutoPtr<CFX_PtrArray> temp(pa);
84 (CBC_ReedSolomonGF256Poly*)(temp->operator[](1));
94 for (int32_t k = 0; k < temp->GetSize(); k++) {
95 delete (CBC_ReedSolomonGF256Poly*)(*temp)[k];
  /external/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/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...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/misc/windows/sdl2/test/
testrendercopyex.c 43 SDL_Surface *temp; local
47 temp = SDL_LoadBMP(file);
48 if (temp == NULL) {
55 if (temp->format->palette) {
56 SDL_SetColorKey(temp, SDL_TRUE, *(Uint8 *) temp->pixels);
58 switch (temp->format->BitsPerPixel) {
60 SDL_SetColorKey(temp, SDL_TRUE,
61 (*(Uint16 *) temp->pixels) & 0x00007FFF);
64 SDL_SetColorKey(temp, SDL_TRUE, *(Uint16 *) temp->pixels)
    [all...]
  /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
  /prebuilts/tools/darwin-x86_64/protoc/include/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/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/libvpx/libvpx/third_party/libyuv/source/
row_any.cc 29 SIMD_ALIGNED(uint8 temp[64 * 4]); \
30 memset(temp, 0, 64 * 3); /* for YUY2 and msan */ \
36 memcpy(temp, y_buf + n, r); \
37 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
38 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
39 ANY_SIMD(temp, temp + 64, temp + 128, temp + 192, MASK + 1); \
40 memcpy(dst_ptr + (n >> DUVSHIFT) * BPP, temp + 192,
    [all...]
  /external/opencv3/modules/core/src/
rand.cpp 72 temp = ( A*X(n) + carry )
73 X(n+1) = temp mod (2^32)
74 carry = temp / (2^32)
86 uint64 temp = *state; local
95 temp = RNG_NEXT(temp);
96 t0 = ((int)temp & p[i][0]) + p[i][1];
97 temp = RNG_NEXT(temp);
98 t1 = ((int)temp & p[i+1][0]) + p[i+1][1]
152 uint64 temp = *state; local
216 uint64 temp = *state; local
270 uint64 temp = *state; local
332 uint64 temp = *state; local
403 float temp; local
    [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...]
  /external/guava/guava-tests/test/com/google/common/io/
FilesTest.java 174 File temp = createTempFile(); local
175 Files.write(I18N, temp, Charsets.UTF_16LE);
176 assertEquals(I18N, Files.toString(temp, Charsets.UTF_16LE));
180 File temp = createTempFile(); local
182 Files.write(data, temp);
183 assertTrue(Arrays.equals(data, Files.toByteArray(temp)));
186 Files.write(null, temp);
193 File temp = createTempFile(); local
194 Files.append(I18N, temp, Charsets.UTF_16LE);
195 assertEquals(I18N, Files.toString(temp, Charsets.UTF_16LE))
218 File temp = createTempFile(); local
237 File temp = createTempFile(); local
262 File temp = createTempFile(); local
306 File temp = createTempFile(); local
331 File temp = createTempFile(); local
355 File temp = createTempFile(); local
416 File temp = Files.createTempDir(); local
501 File temp = createTempFile(); local
520 File temp = createTempFile(); local
    [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...]
  /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/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java 306 double temp = ya * HEX_40000000; local
307 double yaa = ya + temp - temp;
312 temp = recip * HEX_40000000;
313 double recipa = recip + temp - temp;
322 temp = ya + recipa;
323 yb += -(temp - ya - recipa);
324 ya = temp;
325 temp = ya + recipb
370 double temp = ya * HEX_40000000; local
411 double temp = ratio * HEX_40000000; local
484 double temp = na + yb; local
530 double temp = da + yb; local
872 double temp = tempA + tempB; local
893 double temp = za + zb; local
2003 final double temp = sinEpsA * HEX_40000000; local
2147 double temp = sinEpsA * HEX_40000000; local
2815 double temp = 1.0\/xa; local
2822 double temp = epsA + epsB; local
3045 double temp = ra + rb; local
3087 double temp = x * HEX_40000000; local
3163 double temp = x * HEX_40000000; local
3271 double temp = est * HEX_40000000; local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
WriteIndicCharts.java 103 String[] temp = (String[])table.get(UTF16.valueOf(i)); local
105 for(int k=1;k<temp.length && temp[k]!=null;k++){
106 if(UCharacter.getExtendedName(UTF16.charAt(temp[k],0)).indexOf("unassigned")<0 ||
107 temp[k].indexOf(":UNASSIGNED")<0){
113 for(int j=0; j<temp.length;j++){
114 if(temp[j]!=null){
119 String str = temp[j];
121 if(temp[j].indexOf(":FALLBACK")>=0){
122 str = temp[j].substring(0,temp[j].indexOf(":"))
246 String[] temp = (String[])table.get(UTF16.valueOf(i)); 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;

Completed in 4538 milliseconds

<<11121314151617181920>>