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

<<11121314151617181920>>

  /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/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/chromium_org/base/
atomicops_internals_x86_gcc.h 54 Atomic32 temp = increment; local
56 : "+r" (temp), "+m" (*ptr)
58 // temp now holds the old value of *ptr
59 return temp + increment;
64 Atomic32 temp = increment; local
66 : "+r" (temp), "+m" (*ptr)
68 // temp now holds the old value of *ptr
72 return temp + increment;
178 Atomic64 temp = increment; local
180 : "+r" (temp), "+m" (*ptr
188 Atomic64 temp = increment; local
    [all...]
  /external/chromium_org/base/mac/
scoped_block.h 74 B temp = that.block_; local
76 block_ = temp;
80 B temp = block_; variable
82 return temp;
  /external/chromium_org/ppapi/cpp/dev/
scrollbar_dev.cc 71 std::vector<PP_Rect> temp;
72 temp.resize(count);
74 temp[i] = tick_marks[i];
77 pp_resource(), count ? &temp[0] : NULL, count);
  /external/chromium_org/third_party/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/chromium_org/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/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...]
  /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...]
  /external/chromium_org/content/renderer/
shared_memory_seqlock_reader.cc 28 content::OneWriterSeqLock* seqlock, void* final, void* temp, void* from,
40 memcpy(temp, from, size);
54 memcpy(final, temp, size);
  /external/chromium_org/third_party/icu/source/common/
ustrfmt.c 34 UChar temp; local
52 temp = buffer[(length-1) - j];
54 buffer[j] = temp;
  /external/chromium_org/third_party/sqlite/src/test/
recover.test 44 DROP TABLE IF EXISTS temp.altered_recover;
45 CREATE VIRTUAL TABLE temp.altered_recover USING recover(
57 DROP TABLE IF EXISTS temp.altered_recover;
58 CREATE VIRTUAL TABLE temp.altered_recover USING recover(
73 DROP TABLE IF EXISTS temp.altered_recover;
74 CREATE VIRTUAL TABLE temp.altered_recover USING recover(
103 DROP TABLE IF EXISTS temp.leaf_recover;
104 CREATE VIRTUAL TABLE temp.leaf_recover USING recover(
120 DROP TABLE IF EXISTS temp.interior_recover;
121 CREATE VIRTUAL TABLE temp.interior_recover USING recover
    [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;

Completed in 685 milliseconds

<<11121314151617181920>>