Searched refs:value (Results 26 - 50 of 62) sorted by relevance

123

/bionic/libc/kernel/common/linux/
H A Dmoduleparam.h72 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, param_get_##type, &value, perm); __MODULE_PARM_TYPE(name, #type)
H A Dsoundcard.h835 #define SEQ_CONTROL(dev, chn, controller, value) _CHN_COMMON(dev, MIDI_CTL_CHANGE, chn, controller, 0, value)
836 #define SEQ_BENDER(dev, chn, value) _CHN_COMMON(dev, MIDI_PITCH_BEND, chn, 0, 0, value)
837 #define SEQ_V2_X_CONTROL(dev, voice, controller, value) {_SEQ_NEEDBUF(8); _seqbuf[_seqbufptr] = SEQ_EXTENDED; _seqbuf[_seqbufptr+1] = SEQ_CONTROLLER; _seqbuf[_seqbufptr+2] = (dev); _seqbuf[_seqbufptr+3] = (voice); _seqbuf[_seqbufptr+4] = (controller); _seqbuf[_seqbufptr+5] = ((value)&0xff); _seqbuf[_seqbufptr+6] = ((value>>8)&0xff); _seqbuf[_seqbufptr+7] = 0; _SEQ_ADVBUF(8);}
839 #define SEQ_PITCHBEND(dev, voice, value) SEQ_V2_X_CONTROL(dev, voice, CTRL_PITCH_BENDER, value)
840 #define SEQ_BENDER_RANGE(dev, voice, value) SEQ_V2_X_CONTRO
[all...]
H A Duhid.h77 __s32 value; member in struct:uhid_output_ev_req
H A Dmodule.h46 unsigned long value; member in struct:kernel_symbol
H A Dcdrom.h425 __u8 value[2048]; member in struct:dvd_disckey
431 __u8 value[188]; member in struct:dvd_bca
439 __u8 value[2048]; member in struct:dvd_manufact
H A Dmsm_kgsl.h154 void *value; member in struct:kgsl_device_getproperty
/bionic/libc/kernel/tools/
H A Dcpp.py64 an 'id' and a 'value'. the id is a string that identifies
65 the token's class, while the value is the string of the
69 and tabs as a single tokSPACE id, whose value if the original
74 self.value = None
81 self.value = val
83 self.value = id
88 self.value = src.value
94 return "(ident %s)" % self.value
96 return "(number %s)" % self.value
[all...]
H A Dkernel.py315 value = m.group(2)
317 if name in self.items: # aarg, duplicate value
320 self.items[name] = value
/bionic/libc/kernel/common/media/
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
H A Dmsm_isp.h295 void *value; member in struct:msm_isp_cmd
/bionic/libc/bionic/
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 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/
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/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/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/libc/kernel/arch-mips/asm/
H A Dmipsregs.h481 #define __write_32bit_c0_register(register, sel, value) do { if (sel == 0) __asm__ __volatile__( "mtc0\t%z0, " #register "\n\t" : : "Jr" ((unsigned int)(value))); else __asm__ __volatile__( ".set\tmips32\n\t" "mtc0\t%z0, " #register ", " #sel "\n\t" ".set\tmips0" : : "Jr" ((unsigned int)(value))); } while (0)
482 #define __write_64bit_c0_register(register, sel, value) do { if (sizeof(unsigned long) == 4) __write_64bit_c0_split(register, sel, value); else if (sel == 0) __asm__ __volatile__( ".set\tmips3\n\t" "dmtc0\t%z0, " #register "\n\t" ".set\tmips0" : : "Jr" (value)); else __asm__ __volatile__( ".set\tmips64\n\t" "dmtc0\t%z0, " #register ", " #sel "\n\t" ".set\tmips0" : : "Jr" (value)); } while (0)
487 #define __write_32bit_c0_ctrl_register(register, value) do { __asm__ __volatile__( "ctc0\t%z0, " #register "\n\t" : : "Jr" ((unsigned int)(value))); } while (0)
H A Dasm.h50 #define ABS(symbol,value) .globl symbol; symbol = value
/bionic/libc/kernel/arch-x86/asm/
H A Dprocessor_32.h286 #define set_debugreg(value, register) native_set_debugreg(register, value)
/bionic/libc/kernel/common/sound/
H A Dasound.h791 } value; member in struct:snd_ctl_elem_info
806 long value[128]; member in union:snd_ctl_elem_value::__anon621::__anon622
811 long long value[64]; member in union:snd_ctl_elem_value::__anon621::__anon623
826 } value; member in struct:snd_ctl_elem_value
/bionic/libc/tzcode/
H A Dlocaltime.c767 return NULL; /* illegal value */
771 return NULL; /* illegal value */
915 register time_t value; local
919 INITIALIZE(value);
931 value = janfirst + (rulep->r_day - 1) * SECSPERDAY;
933 value += SECSPERDAY;
942 value = janfirst + rulep->r_day * SECSPERDAY;
949 value = janfirst;
951 value += mon_lengths[leapyear][i] * SECSPERDAY;
984 value
[all...]
/bionic/libc/netbsd/isc/
H A Dev_timers.c269 int value
275 UNUSED(value);
/bionic/libc/arch-mips/string/
H A Dmemset.S71 * void _memset16(uint16_t* dst, uint16_t value, size_t size);
121 * void _memset32(uint32_t* dst, uint32_t value, size_t size);
193 # 96 bytes left. The value "96" is calculated as needed buffer for
/bionic/libc/private/isc/
H A Deventlib.h179 int value));
/bionic/libm/include/
H A Dmath.h170 /* Old value from 4.4BSD-Lite math.h; this is probably better. */
438 long double frexpl(long double value, int *); /* fundamentally !__pure2 */

Completed in 480 milliseconds

123