Home
last modified time | relevance | path

Searched refs:input (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/netbsd/net/
Dbase64.c144 u_char input[3] = { 0, 0, 0 }; /* make compiler happy */ local
152 input[0] = *src++;
153 input[1] = *src++;
154 input[2] = *src++;
157 output[0] = (u_int32_t)input[0] >> 2;
158 output[1] = ((u_int32_t)(input[0] & 0x03) << 4) +
159 ((u_int32_t)input[1] >> 4);
160 output[2] = ((u_int32_t)(input[1] & 0x0f) << 2) +
161 ((u_int32_t)input[2] >> 6);
162 output[3] = input[2] & 0x3f;
[all …]
/bionic/libc/kernel/arch-x86/asm/
Dalternative_32.h37input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" "… argument
39input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" "… argument
/bionic/libc/kernel/common/linux/
Duhid.h99 struct uhid_input_req input; member
Dvideodev2.h476 __u32 input; member
/bionic/libc/tools/
Dgensyscalls.py284 def process_file(self,input): argument
286 parser.parse_file(input)
/bionic/libc/kernel/arch-mips/asm/
Dsgiarcs.h77 bogus, ronly, removable, consin, consout, input, output enumerator
/bionic/libm/
DNOTICE58 written by Steven G. Kargl with input from Bruce D. Evans