/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
Shift_Sat_v32xv32.c | 28 void Shift_Sat_v32xv32 (const LVM_INT16 val, 36 if(val>0) 45 b=(a<<val); 47 if( (b>>val) != a ) /* if overflow occured, right shift will show difference*/ 63 else if(val<0) 65 RShift=(LVM_INT16)(-val);
|
/hardware/qcom/camera/QCamera2/stack/common/ |
cam_semaphore.h | 43 int val; member in struct:__anon31253 52 s->val = n; 58 s->val++; 67 while (s->val == 0) 69 s->val--; 78 s->val = 0;
|
/libcore/luni/src/main/native/ |
java_lang_Double.cpp | 34 static jlong Double_doubleToLongBits(JNIEnv*, jclass, jdouble val) { 36 d.d = val; 41 static jlong Double_doubleToRawLongBits(JNIEnv*, jclass, jdouble val) { 43 d.d = val; 47 static jdouble Double_longBitsToDouble(JNIEnv*, jclass, jlong val) { 49 d.bits = val;
|
java_lang_Float.cpp | 33 static jint Float_floatToIntBits(JNIEnv*, jclass, jfloat val) { 35 f.f = val; 40 jint Float_floatToRawIntBits(JNIEnv*, jclass, jfloat val) { 42 f.f = val; 46 jfloat Float_intBitsToFloat(JNIEnv*, jclass, jint val) { 48 f.bits = val;
|
/dalvik/libdex/ |
ZipArchive.h | 140 off_t val = 0; local 141 dexZipGetEntryInfo(pArchive, entry, NULL, NULL, NULL, &val, NULL, NULL); 142 return (long) val; 147 size_t val = 0; local 148 dexZipGetEntryInfo(pArchive, entry, NULL, &val, NULL, NULL, NULL, NULL); 149 return val; 154 long val = 0; local 155 dexZipGetEntryInfo(pArchive, entry, NULL, NULL, NULL, NULL, &val, NULL); 156 return val; 161 long val = 0 local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
atomicops_unittest.cc | 51 int val; local 52 EXPECT_FALSE(queue.PopFront(&val)); 59 int val; local 60 EXPECT_FALSE(queue.PopFront(&val)); 73 int val; local 74 EXPECT_TRUE(queue.PopFront(&val)); 75 EXPECT_EQ(1, val); 77 EXPECT_TRUE(queue.PopFront(&val)); 78 EXPECT_EQ(2, val); 80 EXPECT_FALSE(queue.PopFront(&val)); 94 int val; local [all...] |
/external/clang/test/PCH/ |
captured-stmt.cpp | 18 int val; member in struct:C 20 explicit C(int v) : val(v) { } 26 x += val;
|
/external/icu4c/tools/genrb/ |
errmsg.h | 29 U_CFUNC void setShowWarning(UBool val); 33 U_CFUNC void setStrict(UBool val); 37 U_CFUNC void setVerbose(UBool val);
|
/external/opencv/ |
WLNonFileByteStream.h | 33 void PutByte( int val );
35 void PutWord( int val );
36 void PutDWord( int val );
|
/external/smack/src/com/kenai/jbosh/ |
AttrAccept.java | 33 * @param val attribute getValue 36 private AttrAccept(final String val) { 37 super(val); 38 encodings = val.split("[\\s,]+");
|
AttrCharsets.java | 33 * @param val attribute getValue 35 private AttrCharsets(final String val) { 36 super(val); 37 charsets = val.split("\\ +");
|
/external/valgrind/main/none/tests/x86/ |
badseg.c | 15 int val; local 23 asm volatile("mov %1, %%fs; mov %%fs:0, %0" : "=r" (val) : "r"(4)); 25 printf("val=%d\n", val);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
intnum.c | 44 union val { union in struct:yasm_intnum 47 } val; member in struct:yasm_intnum 91 intn->val.l = (long)BitVector_Chunk_Read(bv, 31, 0); 101 intn->val.bv = BitVector_Clone(bv); 104 intn->val.l = -((long)ul); 108 intn->val.bv = BitVector_Clone(bv); 119 return intn->val.bv; 122 if (intn->val.l >= 0) 123 BitVector_Chunk_Store(bv, 32, 0, (unsigned long)intn->val.l); 125 BitVector_Chunk_Store(bv, 32, 0, (unsigned long)-intn->val.l) 843 wordptr val; local 885 wordptr val = intnum_tobv(result, intn); local 964 wordptr val; local 981 wordptr val; local 997 wordptr val = op1static; local 1018 wordptr val = op1static; local 1036 wordptr val = op1static; local 1052 wordptr val = op1static; local [all...] |
/bootable/recovery/minzip/ |
Bits.h | 271 INLINE void set1(unsigned char* buf, unsigned char val) 273 *buf = (unsigned char)(val); 279 INLINE void set2BE(unsigned char* buf, unsigned short val) 281 *buf++ = (unsigned char)(val >> 8); 282 *buf = (unsigned char)(val); 288 INLINE void set4BE(unsigned char* buf, unsigned int val) 290 *buf++ = (unsigned char)(val >> 24); 291 *buf++ = (unsigned char)(val >> 16); 292 *buf++ = (unsigned char)(val >> 8); 293 *buf = (unsigned char)(val); [all...] |
/dalvik/vm/ |
Bits.h | 272 INLINE void set1(u1* buf, u1 val) 274 *buf = (u1)(val); 280 INLINE void set2BE(u1* buf, u2 val) 282 *buf++ = (u1)(val >> 8); 283 *buf = (u1)(val); 289 INLINE void set4BE(u1* buf, u4 val) 291 *buf++ = (u1)(val >> 24); 292 *buf++ = (u1)(val >> 16); 293 *buf++ = (u1)(val >> 8); 294 *buf = (u1)(val); [all...] |
/dalvik/vm/jdwp/ |
ExpandBuf.h | 50 void expandBufAdd1(ExpandBuf* pBuf, u1 val); 51 void expandBufAdd2BE(ExpandBuf* pBuf, u2 val); 52 void expandBufAdd4BE(ExpandBuf* pBuf, u4 val); 53 void expandBufAdd8BE(ExpandBuf* pBuf, u8 val);
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
xml.rb | 148 <component attr="val'ue" attr2='val"ue'> 177 Attr: attr = "val'ue" 178 Attr: attr2 = 'val"ue'
|
/external/chromium_org/mojo/apps/js/bindings/ |
handle.cc | 10 const mojo::Handle& val) { 11 return Converter<MojoHandle>::ToV8(isolate, val.value()); 15 v8::Handle<v8::Value> val, 17 return Converter<MojoHandle>::FromV8(isolate, val, out->mutable_value());
|
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/ |
Gamepad.h | 50 void index(unsigned val) { m_index = val; } 53 void timestamp(unsigned long long val) { m_timestamp = val; }
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/ |
pp_celshade.c | 34 pp_celshade_init(struct pp_queue_t *ppq, unsigned int n, unsigned int val)
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
pratom.h | 53 ** val: a pointer to the value to increment 57 NSPR_API(PRInt32) PR_AtomicIncrement(PRInt32 *val); variable 64 ** val: a pointer to the value to decrement 68 NSPR_API(PRInt32) PR_AtomicDecrement(PRInt32 *val); variable 75 ** val: A pointer to a 32 bit value to be set 76 ** newval: The newvalue to assign to val 80 NSPR_API(PRInt32) PR_AtomicSet(PRInt32 *val, PRInt32 newval); 88 ** val: value to be added 92 NSPR_API(PRInt32) PR_AtomicAdd(PRInt32 *ptr, PRInt32 val);
|
/external/chromium_org/tools/json_schema_compiler/ |
util_cc_helper.py | 30 val = ('%(namespace)s::PopulateOptionalArrayFromDictionary' 33 val = ('%(namespace)s::PopulateArrayFromDictionary' 36 return val % sub 53 val = '%(namespace)s::PopulateOptionalArrayFromList(*%(src)s, &%(dst)s)' 55 val = '%(namespace)s::PopulateArrayFromList(*%(src)s, &%(dst)s)' 57 return val % sub 72 val = '%(namespace)s::CreateValueFromOptionalArray(%(src)s)' 74 val = '%(namespace)s::CreateValueFromArray(%(src)s)' 76 return val % sub
|
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/ |
GL1Renderer.java | 23 * @param val The value 25 public void setFixedFuncBinding(FixedFuncBinding ffBinding, Object val);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_quant_common.c | 99 int i, val = 4; local 106 ac_qlookup[0] = val; 107 dc_qlookup[0] = val; 108 val += 4; 111 const int ac_val = val; 113 val = (int)(val * 1.01975); 114 if (val == ac_val) 115 ++val;
|
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
pp_celshade.c | 34 pp_celshade_init(struct pp_queue_t *ppq, unsigned int n, unsigned int val)
|