Searched defs:value (Results 1 - 25 of 36) sorted by relevance

12

/bionic/libc/kernel/common/linux/
H A Dsw_sync.h24 __u32 value; member in struct:sw_sync_create_fence_data
H A Dhidraw.h26 __u8 value[HID_MAX_DESCRIPTOR_SIZE]; member in struct:hidraw_report_descriptor
H A Dmodule.h46 unsigned long value; member in struct:kernel_symbol
H A Duhid.h77 __s32 value; member in struct:uhid_output_ev_req
H A Dmsm_kgsl.h154 void *value; member in struct:kgsl_device_getproperty
/bionic/libc/stdlib/
H A Dsetenv.c40 * Set the value of the environmental variable "name" to be
41 * "value". If rewrite is set, replace any current value.
44 setenv(const char *name, const char *value, int rewrite) argument
46 static char **lastenv; /* last value of environ */
50 if (*value == '=') /* no `=' in value */
51 ++value;
52 l_value = strlen(value);
57 while ((*C++ = *value
[all...]
H A Dstrtod.c213 #define value(x) ((x).d) macro
282 #define Ebits 8 /* exponent has 7 bits, but 8 is the right value in b2d */
381 /* Special value used to indicate an invalid Bigint value,
384 * computation is performed. Also the NULL value can also be
385 * already used to indicate "value not initialized yet" and
1024 value(x) = _x;
1049 return value(a);
1122 return value(d);
1141 value(
[all...]
/bionic/libc/bionic/
H A Dldexp.c26 double value; member in union:__anon6
40 double value; member in union:__anon8
55 ew_u.value = (d); \
65 gh_u.value = (d); \
74 sh_u.value = (d); \
76 (d) = sh_u.value; \
H A Dsemaphore.c38 * 31-bit signed value and a 1-bit 'shared' flag
41 * We use the value -1 to indicate contention on the
43 * any value lower than -2 is invalid at runtime.
65 /* Maximum unsigned value that can be stored in the semaphore.
71 /* convert a value into the corresponding sem->count bit pattern */
74 /* convert a sem->count bit pattern into the corresponding signed value */
77 /* the value +1 as a sem->count bit-pattern. */
80 /* the value -1 as a sem->count bit-pattern. */
90 int sem_init(sem_t *sem, int pshared, unsigned int value) argument
97 /* ensure that 'value' ca
[all...]
H A Dsystem_properties.c124 int __system_property_read(const prop_info *pi, char *name, char *value) argument
135 memcpy(value, pi->value, len + 1);
145 int __system_property_get(const char *name, char *value) argument
150 return __system_property_read(pi, 0, value);
152 value[0] = 0;
218 int __system_property_set(const char *key, const char *value) argument
226 if(value == 0) value = "";
228 if(strlen(value) >
[all...]
H A Dlogd_write.c240 void __libc_android_log_event_int(int32_t tag, int value) argument
242 __libc_android_log_btwrite(tag, EVENT_TYPE_INT, &value, sizeof(value));
H A Dpthread-timers.c71 /* this value is used internally to indicate a 'free' or 'zombie'
81 /* the maximum value of overrun counters */
101 sigval_t value; member in struct:thr_timer
111 struct timespec volatile period; /* reload value, or 0 */
335 timer->value = evp->sigev_value;
465 /* return current timer value if ospec isn't NULL */
569 // add the same value just a bit later.
592 timer->callback(timer->value);
/bionic/libc/include/sys/
H A D_system_properties.h66 char value[PROP_VALUE_MAX]; member in struct:prop_info
73 char value[PROP_VALUE_MAX]; member in struct:prop_msg
82 ** - prop_area.count will never decrease in value
85 ** - reading a value requires the following steps
88 ** 3. memcpy(local, pi->value, SERIAL_VALUE_LEN(serial) + 1)
91 ** - writing a value requires the following steps
93 ** 2. memcpy(pi->value, local_value, value_len)
/bionic/libc/kernel/common/media/
H A Dmsm_gestures.h50 void *value; member in struct:msm_ges_ctrl_cmd
H A Dmsm_gemini.h52 void *value; member in struct:msm_gemini_ctrl_cmd
H A Dmsm_mercury.h71 void *value; member in struct:msm_mercury_ctrl_cmd
/bionic/libc/kernel/common/linux/netfilter_ipv4/
H A Dip_queue.h42 unsigned char value; member in struct:ipq_mode_msg
47 unsigned int value; member in struct:ipq_verdict_msg
/bionic/libc/include/
H A Dpthread.h42 int volatile value; member in struct:__anon33
68 int volatile value; member in struct:__anon35
263 int pthread_setspecific(pthread_key_t key, const void *value);
/bionic/libc/netbsd/nameser/
H A Dns_name.c854 int value = 0, count = 0, tbcount = 0, blen = 0; local
879 *tp++ = ((value << 4) & 0xff);
900 value <<= 4;
901 value += digitvalue[(int)c];
907 *tp++ = value;
932 if (((value << (8 - traillen)) & 0xff) != 0)
/bionic/libm/src/
H A Dmath_private.h29 * value. That is non-ANSI, and, moreover, the gcc instruction
45 double value; member in union:__anon706
59 double value; member in union:__anon708
74 ew_u.value = (d); \
84 gh_u.value = (d); \
93 gl_u.value = (d); \
104 (d) = iw_u.value; \
112 sh_u.value = (d); \
114 (d) = sh_u.value; \
122 sl_u.value
134 float value; member in union:__anon710
[all...]
/bionic/linker/
H A Dlinker_format.c338 * return the value, and writes the new position past
368 format_number(char *buffer, size_t bufsize, uint64_t value, int base, const char *digits) argument
374 while (value) {
375 unsigned d = value % base;
376 value /= base;
404 format_integer(char *buffer, size_t buffsize, uint64_t value, int base, int isSigned) argument
406 if (isSigned && (int64_t)value < 0) {
410 value = (uint64_t)(-(int64_t)value);
413 format_number(buffer, buffsize, value, bas
419 format_hex(char *buffer, size_t buffsize, uint64_t value, int isCap) argument
546 uint64_t value = (uintptr_t) va_arg(args, void*); local
553 uint64_t value; local
[all...]
/bionic/libc/netbsd/resolv/
H A Dres_debug.c514 return (syms->number); /* The default value. */
653 p_time(u_int32_t value) { argument
656 if (ns_format_ttl((u_long)value, nbuf, sizeof nbuf) < 0)
657 sprintf(nbuf, "%u", value);
705 /* takes an XeY precision/size value, returns a string representation. */
827 retval = 0; /* invalid value -- indicates error */
H A Dres_cache.c62 * the smallest TTL value among the answer records are used as the time
109 * this code is called if its value is "0", then the resolver cache is
118 /* default number of entries kept in the cache. This value has been
137 * As such, a value of 64 should be relatively comfortable at the moment.
140 * value with a custom value
189 * this value is initially set to the buffer's address.
197 * the _bprint_() functions return the new value of 'p' after the data
200 * - the returned value will never be strictly greater than 'end'
202 * - a return value equa
299 _bprint_hex( char* p, char* end, unsigned value, int numDigits ) argument
[all...]
/bionic/libc/stdio/
H A Dvfprintf.c179 int ret; /* return value accumulator */
189 int expt; /* integer value of exponent */
561 * since it has no real practical value, and could lead to
595 * value of the pointer is converted to a sequence
657 * ``The result of converting a zero value with an
1229 cvt(double value, int ndigits, int flags, char *sign, int *decpt, int ch, argument
1248 if (value < 0) {
1249 value = -value;
1253 digits = __dtoa(value, mod
1308 _my_isinf(double value) argument
1317 _my_isnan(double value) argument
[all...]
/bionic/libc/upstream-netbsd/libc/regex/
H A Dregcomp.c165 static void dofwd(struct parse *p, sopno pos, sopno value);
733 static int /* the value */
968 static char /* value of symbol */
972 char value; local
981 value = p_b_coll_elem(p, '.');
983 return(value);
990 static char /* value of collating element */
1222 return(0); /* make the return value well-defined */
1318 * the same value!
1361 static int /* character; there is no "none" value */
1745 dofwd( struct parse *p, sopno pos, sopno value) argument
[all...]

Completed in 471 milliseconds

12