/bionic/libc/bionic/ |
arc4random.c | 177 u_int8_t val; local 182 val = arc4_getbyte(); 184 return val; 190 u_int32_t val; local 191 val = arc4_getbyte() << 24; 192 val |= arc4_getbyte() << 16; 193 val |= arc4_getbyte() << 8; 194 val |= arc4_getbyte(); 195 return val; 219 u_int32_t val; local [all...] |
/bionic/libc/kernel/arch-x86/asm/ |
pgtable-2level.h | 34 #define __swp_type(x) (((x).val >> 1) & 0x1f) 35 #define __swp_offset(x) ((x).val >> 8) 38 #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
|
/external/kernel-headers/original/linux/ |
kdev_t.h | 31 static inline dev_t old_decode_dev(u16 val) 33 return MKDEV((val >> 8) & 255, val & 255);
|
/external/openssl/crypto/asn1/ |
x_name.c | 64 static int x509_name_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it, 67 static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass); 68 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it); 69 static void x509_name_ex_free(ASN1_VALUE **val, const ASN1_ITEM *it); 113 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it) 122 *val = (ASN1_VALUE *)ret; 159 static int x509_name_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it, 177 if(*val) x509_name_ex_free(val, NULL); 196 *val = nm.a [all...] |
/external/quake/quake/src/WinQuake/ |
vregset.cpp | 32 void loutportb (int port, int val)
34 printf ("port, val: %x %x\n", port, val);
|
/external/zlib/contrib/iostream/ |
zfstream.h | 95 gzomanip(gzofstream &(*f)(gzofstream &, T), T v) : func(f), val(v) { } function in class:gzomanip 98 T val; member in class:gzomanip 103 return (*m.func)(s, m.val);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
MediaPlayerInvokeTest.java | 66 int val = rnd.nextInt(); local 67 request.writeInt(val); 69 assertEquals(val, reply.readInt());
|
/ndk/build/platforms/android-5/arch-x86/usr/include/asm/ |
pgtable-2level.h | 34 #define __swp_type(x) (((x).val >> 1) & 0x1f) 35 #define __swp_offset(x) ((x).val >> 8) 38 #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
|
/ndk/build/platforms/android-8/arch-x86/usr/include/asm/ |
pgtable-2level.h | 34 #define __swp_type(x) (((x).val >> 1) & 0x1f) 35 #define __swp_offset(x) ((x).val >> 8) 38 #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
|
/sdk/traceview/src/com/android/traceview/ |
TraceUnits.java | 71 public void setTimeScale(TimeScale val) { 72 mTimeScale = val; 73 switch (val) {
|
/dalvik/libcore/archive/src/main/java/java/util/zip/ |
CRC32.java | 50 * @param val 53 public void update(int val) { 54 crc = updateByteImpl((byte) val, crc); 91 private native long updateByteImpl(byte val, long crc1);
|
/dalvik/libcore/xml/src/main/java/org/apache/xpath/ |
Arg.java | 82 * @param val an XObject representing the arguments's value. 85 public final void setVal(XObject val) 87 m_val = val; 212 * @param val Value of the argument, expressed as an XObject 214 public Arg(QName qname, XObject val) 218 m_val = val; 246 * @param val Value of the argument, expressed as an XObject 249 public Arg(QName qname, XObject val, boolean isFromWithParam) 253 m_val = val;
|
/development/simulator/app/ |
Preferences.h | 60 void SetBool(const char* name, bool val); 61 void SetInt(const char* name, int val); 62 void SetDouble(const char* name, double val); 63 void SetString(const char* name, const char* val);
|
/development/testrunner/ |
am_instrument_parser.py | 87 val = '' 97 val = re_result.search(line).group(2).strip(string.whitespace) 99 result_dict[key] = float(val) 101 result_dict[key] = val 103 result_dict[key] = val 107 val = re_code.search(line).group(1).strip(string.whitespace) 108 result_dict[key] = val 112 val = '' 113 result_dict[key] = val
|
/external/bluetooth/bluez/src/ |
dbus-common.c | 195 static void append_variant(DBusMessageIter *iter, int type, void *val) 202 dbus_message_iter_append_basic(&value, type, val); 207 static void append_array_variant(DBusMessageIter *iter, int type, void *val) 212 const char ***str_array = val; 231 const char *key, int type, void *val) 236 const char *str = *((const char **) val); 246 append_variant(&entry, type, val); 252 void *val, int n_elements) 261 append_array_variant(&entry, type, val);
|
/external/dhcpcd/ |
dhcp.h | 157 #define add_option_mask(var, val) (var[val >> 3] |= 1 << (val & 7)) 158 #define del_option_mask(var, val) (var[val >> 3] &= ~(1 << (val & 7))) 159 #define has_option_mask(var, val) (var[val >> 3] & (1 << (val & 7)))
|
/external/libxml2/include/libxml/ |
xpath.h | 439 xmlXPathNodeSetCreate (xmlNodePtr val); 445 xmlXPathObjectCopy (xmlXPathObjectPtr val); 453 xmlXPathCastNumberToBoolean (double val); 455 xmlXPathCastStringToBoolean (const xmlChar * val); 459 xmlXPathCastToBoolean (xmlXPathObjectPtr val); 462 xmlXPathCastBooleanToNumber (int val); 464 xmlXPathCastStringToNumber (const xmlChar * val); 470 xmlXPathCastToNumber (xmlXPathObjectPtr val); 473 xmlXPathCastBooleanToString (int val); 475 xmlXPathCastNumberToString (double val); [all...] |
/external/oprofile/libutil/ |
op_fileio.c | 77 void op_write_u8(FILE * fp, u8 val) 79 op_write_file(fp, &val, sizeof(val)); 83 void op_write_u32(FILE * fp, u32 val) 85 op_write_file(fp, &val, sizeof(val)); 89 void op_write_u64(FILE * fp, u64 val) 91 op_write_file(fp, &val, sizeof(val));
|
/external/qemu/distrib/sdl-1.2.12/src/thread/beos/ |
SDL_syssem.c | 67 int32 val; local 77 val = acquire_sem(sem->id); 80 val = acquire_sem_etc(sem->id, 1, B_RELATIVE_TIMEOUT, timeout); 82 switch (val) {
|
/external/qemu/ |
migration-tcp.c | 56 int val, ret; local 57 socklen_t valsize = sizeof(val); 61 ret = getsockopt(s->fd, SOL_SOCKET, SO_ERROR, (void *) &val, &valsize); 71 if (val == 0) 74 dprintf("error connecting %d\n", val); 182 int val; local 194 val = 1; 195 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
|
/external/webkit/WebCore/bridge/qt/ |
qt_class.cpp | 76 JSObject* val = qtinst->m_methods.value(name); local 77 if (val) 78 return val; 88 QtRuntimeMetaMethod* val = new (exec) QtRuntimeMetaMethod(exec, identifier, static_cast<QtInstance*>(inst), index, normal, false); local 89 qtinst->m_methods.insert(name, val); 90 return val; 105 QtRuntimeMetaMethod* val = new (exec) QtRuntimeMetaMethod(exec, identifier, static_cast<QtInstance*>(inst), index, normal, false); local 106 qtinst->m_methods.insert(name, val); 107 return val;
|
/frameworks/base/tests/CoreTests/android/core/ |
GZIPStreamTest.java | 67 byte val, step; 70 val = 0; 75 sample[offset++] = val; 76 val += step;
|
/hardware/broadcom/wlan/bcm4329/src/include/ |
bcmdefs.h | 94 #define GFIELD(val, field) \ 95 (((val) >> field ## _S) & field ## _M) 96 #define SFIELD(val, field, bits) \ 97 (((val) & (~(field ## _M << field ## _S))) | \
|
/system/core/debuggerd/ |
utility.c | 45 int val; local 48 val = ptrace(PTRACE_PEEKTEXT, pid, src+i, NULL); 50 ((unsigned char *)dst)[i] = val & 0xff; 52 val >>= 8;
|
/system/core/include/cutils/ |
sockets.h | 49 const char *val; local 64 val = getenv(key); 65 if (!val) 69 fd = strtol(val, NULL, 10);
|