/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/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/clang/test/CodeGen/ |
2002-07-14-MiscTests.c | 29 static char *temp; variable 36 temp = (char *) malloc(32768); 38 return temp;
|
/external/icu4c/common/ |
ustrfmt.c | 34 UChar temp; local 52 temp = buffer[(length-1) - j]; 54 buffer[j] = temp;
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
ImageFlipper.java | 62 ByteBuffer temp = BufferUtils.createByteBuffer(scanline); local 71 temp.rewind(); 72 temp.put(data);
|
/external/marisa-trie/lib/marisa/ |
intvector.cc | 58 IntVector temp; local 59 temp.units_.map(mapper); 60 mapper.map(&temp.num_bits_per_int_); 61 mapper.map(&temp.mask_); 62 mapper.map(&temp.size_); 63 temp.swap(this); 89 IntVector temp; local 90 temp.units_.read(reader); 91 reader.read(&temp.num_bits_per_int_); 92 reader.read(&temp.mask_) [all...] |
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
intvector.cc | 58 IntVector temp; local 59 temp.units_.map(mapper); 60 mapper.map(&temp.num_bits_per_int_); 61 mapper.map(&temp.mask_); 62 mapper.map(&temp.size_); 63 temp.swap(this); 89 IntVector temp; local 90 temp.units_.read(reader); 91 reader.read(&temp.num_bits_per_int_); 92 reader.read(&temp.mask_) [all...] |
/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/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);
|
/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/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/ |
DefaultParticleInfluencer.java | 22 protected transient Vector3f temp = new Vector3f(); field in class:DefaultParticleInfluencer 41 temp.set(FastMath.nextRandomFloat(), FastMath.nextRandomFloat(), FastMath.nextRandomFloat()); 42 temp.multLocal(2f); 43 temp.subtractLocal(1f, 1f, 1f); 44 temp.multLocal(startVelocity.length()); 45 particle.velocity.interpolate(temp, velocityVariation);
|
/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/base/memory/ |
scoped_handle.h | 35 FILE* temp = handle_; local 37 return temp;
|
/external/chromium_org/base/memory/ |
scoped_handle.h | 34 FILE* temp = handle_; local 36 return temp;
|
/external/chromium_org/third_party/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;
|
/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
|