/prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/ |
sem.h | 50 int val; member in union:semun
|
/prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/ |
sem.h | 50 int val; member in union:semun
|
/prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/ |
sem.h | 50 int val; member in union:semun
|
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/ |
sem.h | 50 int val; member in union:semun
|
/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/ |
sem.h | 50 int val; member in union:semun
|
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/ |
sem.h | 50 int val; member in union:semun
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/ |
sem.h | 50 int val; member in union:semun
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/machine/ |
_types.h | 129 __register_t val[14]; member in struct:label_t
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ |
sem.h | 50 int val; member in union:semun
|
/system/core/include/sysutils/ |
List.h | 51 explicit _Node(const T& val) : mVal(val) {} 57 inline void setVal(const T& val) { mVal = val; } 208 void push_front(const T& val) { insert(begin(), val); } local 209 void push_back(const T& val) { insert(end(), val); } local 212 iterator insert(iterator posn, const T& val) 214 _Node* newNode = new _Node(val); // alloc & copy-construc [all...] |
/system/core/liblog/ |
event_tag_map.c | 338 unsigned long val; local 345 val = strtoul(startp, &endp, 10); 350 tag->tagIndex = val;
|
/system/core/libsparse/ |
backed_block.c | 43 uint32_t val; member in struct:backed_block::__anon44007::__anon44011 106 return bb->fill.val; 219 if (a->fill.val != b->fill.val) { 299 bb->fill.val = fill_val;
|
/system/extras/ext4_utils/ |
contents.c | 387 char *val = (char *) new_entry + available_size - EXT4_XATTR_SIZE(value_len); local 388 size_t e_value_offs = val - (char *) block_start; 391 memset(val, 0, EXT4_XATTR_SIZE(value_len)); 392 memcpy(val, value, value_len);
|
/system/extras/tests/lib/testUtil/ |
testUtil.c | 46 double ts2double(const struct timespec *val) 50 rv = val->tv_sec; 51 rv += (double) val->tv_nsec / nSecsPerSec; 57 double tv2double(const struct timeval *val) 61 rv = val->tv_sec; 62 rv += (double) val->tv_usec / uSecsPerSec; 183 uint32_t val; local 187 val = lrand48(); 191 val ^= lrand48() << 1; 193 return val; 210 uint32_t val = (mod <= lrand48maxVal) ? (uint32_t) lrand48() : testRand(); local [all...] |
/system/netd/ |
List.h | 51 explicit _Node(const T& val) : mVal(val) {} 57 inline void setVal(const T& val) { mVal = val; } 208 void push_front(const T& val) { insert(begin(), val); } local 209 void push_back(const T& val) { insert(end(), val); } local 212 iterator insert(iterator posn, const T& val) 214 _Node* newNode = new _Node(val); // alloc & copy-construc [all...] |
/prebuilts/sdk/16/ |
uiautomator.jar | |
/frameworks/base/core/java/android/os/ |
Parcel.java | 244 private static native void nativeWriteInt(int nativePtr, int val); 245 private static native void nativeWriteLong(int nativePtr, long val); 246 private static native void nativeWriteFloat(int nativePtr, float val); 247 private static native void nativeWriteDouble(int nativePtr, double val); 248 private static native void nativeWriteString(int nativePtr, String val); 249 private static native void nativeWriteStrongBinder(int nativePtr, IBinder val); 250 private static native void nativeWriteFileDescriptor(int nativePtr, FileDescriptor val); 480 public final void writeInt(int val) { 481 nativeWriteInt(mNativePtr, val); 488 public final void writeLong(long val) { 736 char[] val = new char[N]; local 772 int[] val = new int[N]; local 809 long[] val = new long[N]; local 846 float[] val = new float[N]; local 883 double[] val = new double[N]; local 919 String[] val = new String[N]; local 970 IBinder[] val = new IBinder[N]; local [all...] |
/bionic/libc/kernel/common/media/ |
soc2030.h | 101 __u16 val; member in struct:soc2030_regs
|
/dalvik/tools/dmtracedump/ |
CreateTestTrace.c | 326 void write2LE(FILE* fp, unsigned short val) 328 putc(val & 0xff, fp); 329 putc(val >> 8, fp); 332 void write4LE(FILE* fp, unsigned int val) 334 putc(val & 0xff, fp); 335 putc((val >> 8) & 0xff, fp); 336 putc((val >> 16) & 0xff, fp); 337 putc((val >> 24) & 0xff, fp); 340 void write8LE(FILE* fp, unsigned long long val) 342 putc(val & 0xff, fp) 429 unsigned int val = METHOD_COMBINE(pRecord->methodId, pRecord->action); local [all...] |
/dalvik/vm/ |
InlineNative.cpp | 533 s4 val = (s4) arg0; local 534 pResult->i = (val >= 0) ? val : -val; 547 s8 val = convert.ll; local 548 pResult->j = (val >= 0) ? val : -val;
|
/device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_stream.c | 798 uint32_t val; local 801 val = V4L2_PIX_FMT_NV12; 805 val = V4L2_PIX_FMT_NV21; 810 val= V4L2_PIX_FMT_SBGGR10; 814 val= V4L2_PIX_FMT_NV61; 818 val = 0; 822 return val; [all...] |
/external/aac/libFDK/src/ |
fixpoint_math.cpp | 387 FIXP_DBL val = op ; local 390 if (val == FL2FXCONST_DBL(0.0)) { 397 FDK_ASSERT(val > FL2FXCONST_DBL(0.0)); 398 *shift = fNormz(val) - 1; /* CountLeadingBits() is not necessary here since test value is always > 0 */ 399 val <<=*shift ; /* normalized input V */ 403 reg1 = invSqrtTab[ (INT)(val>>(DFRACT_BITS-1-(SQRT_BITS+1))) & SQRT_BITS_MASK ]; 407 regtmp= reg2 - fMultDiv2(regtmp, val); /* b = 0.5 - 2 * V * Q^2 */
|
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/ |
MappedByteBufferTest.java | 61 int val = ibuffer.get(); local 62 assertEquals("Got wrong int value", i + 1, val); //$NON-NLS-1$
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
DateFormatSymbolsTest.java | 250 String[] val = { "AM", "PM" }; local 251 if (retVal.length != val.length) 253 for (int i = 0; i < val.length; i++) 254 assertTrue("Array values do not match", retVal[i].equals(val[i])); 264 String[] val = { "BC", "AD" }; local 265 if (retVal.length != val.length) 267 for (int i = 0; i < val.length; i++) 268 assertTrue("Array values do not match", retVal[i].equals(val[i])); 279 String val = "GyMdkHmsSEDFwWahKzYeugAZvcLQqV"; local 281 assertEquals("Returned incorrect pattern string", val, retVal) 291 String[] val = { "January", "February", "March", "April", "May", local 306 String[] val = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", local 320 String[] val = { "", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; local 334 String[] val = { "", "Sunday", "Monday", "Tuesday", "Wednesday", local 348 String[][] val = { { "XX", "XX", "XX", "XX", "XX" }, local 378 String[] val = { "XX", "YY" }; local 393 String[] val = { "XX", "YY" }; local 410 String val = "GyMZZkHmsSEHHFwWahKz"; local 428 String[] val = { "XX", "YY" }; local 444 String[] val = { "XX", "YY" }; local 460 String[] val = { "XX", "YY" }; local 476 String[] val = { "XX", "YY" }; local 492 String[][] val = { { "XX", "XX", "XX", "XX", "XX" }, local [all...] |
/external/bison/lib/ |
hash.c | 493 size_t val = rotr_sz ((size_t) data, 3); local 494 return val % n; [all...] |