HomeSort by relevance Sort by last modified time
    Searched refs:inp (Results 1 - 25 of 245) sorted by null

1 2 3 4 5 6 7 8 910

  /external/fio/lib/
inet_aton.c 3 int inet_aton(const char *cp, struct in_addr *inp)
5 return inet_pton(AF_INET, cp, inp);
inet_aton.h 6 int inet_aton(const char *cp, struct in_addr *inp);
  /system/core/toolbox/upstream-netbsd/bin/dd/
conv.c 65 u_char *inp; local
69 for (inp = in.dbp - (cnt = in.dbrcnt); cnt--; ++inp)
70 *inp = t[*inp];
122 u_char *inp, *outp; local
132 for (inp = in.db, cnt = in.dbrcnt;
133 cnt && *inp++ != '\n'; --cnt);
142 in.dbp = inp + cnt - 1;
149 for (inp = in.dbp - in.dbcnt, outp = out.dbp; in.dbcnt;)
233 u_char *inp; local
    [all...]
  /external/toolchain-utils/bestflags/
pipeline_process_test.py 61 inp = manager.Queue()
65 2, 'testing', {}, TEST_STAGE, inp, MockHelper, MockWorker, output)
68 inp.put(MockTask(TEST_STAGE, 1))
69 inp.put(MockTask(TEST_STAGE, 1))
70 inp.put(MockTask(TEST_STAGE, 2))
71 inp.put(pipeline_process.POISONPILL)
  /external/libhevc/common/
ihevc_trans_macros.h 37 #define QUANT(out, inp, quant_coeff, qp_div, log2_trans_size, q_add) \
51 sign = (inp)<0 ? -1:1; \
53 tmp = (LWORD64)(abs(inp)); \
62 #define QUANT_HBD(out, inp, quant_coeff, qp_div, log2_trans_size, q_add, bit_depth) \
76 sign = (inp)<0 ? -1:1; \
78 tmp = (LWORD64)(abs(inp)); \
87 #define QUANT_NO_WEIGHTMAT(out, inp, quant_coeff, qp_div, log2_trans_size, q_add) \
101 sign = (inp)<0 ? -1:1; \
103 tmp = (WORD32)(abs(inp)); \
112 #define QUANT_NO_WEIGHTMAT_HBD(out, inp, quant_coeff, qp_div, log2_trans_size, q_add, bit_depth)
    [all...]
  /external/boringssl/src/crypto/chacha/asm/
chacha-x86_64.pl 72 ($out,$inp,$len,$key,$counter)=("%rdi","%rsi","%rdx","%rcx","%r8");
280 mov $inp,64+8(%rsp) # save inp
300 mov 64+8(%rsp),$inp # load inp
321 xor 4*0($inp),@x[0] # xor with input
322 xor 4*1($inp),@x[1]
323 xor 4*2($inp),@x[2]
324 xor 4*3($inp),@x[3]
325 xor 4*4($inp),@x[4
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_x86_gcc.cc 48 #define cpuid(a, b, c, d, inp) \
52 : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp))
54 #define cpuid(a, b, c, d, inp) \
58 : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
test_refactor.py 77 inp = "from __future__ import generators, print_function"
78 self.assertEqual(run(inp), fs(("generators", "print_function")))
79 inp ="from __future__ import print_function, generators"
80 self.assertEqual(run(inp), fs(("print_function", "generators")))
81 inp = "from __future__ import (print_function,)"
82 self.assertEqual(run(inp), fs(("print_function",)))
83 inp = "from __future__ import (generators, print_function)"
84 self.assertEqual(run(inp), fs(("generators", "print_function")))
85 inp = "from __future__ import (generators, nested_scopes)"
86 self.assertEqual(run(inp), fs(("generators", "nested_scopes")))
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc 27 bool readframe(int16_t* data, FILE* inp, size_t length) {
28 size_t rlen = fread(data, sizeof(int16_t), length, inp);
37 FILE* inp; local
102 if ((inp = fopen(inname, "rb")) == NULL) {
123 endfile = readframe(shortdata, inp, framelength);
166 fclose(inp);
  /external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc 32 bool readframe(int16_t *data, FILE *inp, size_t length)
34 size_t rlen = fread(data, sizeof(int16_t), length, inp);
44 FILE *inp, *outbitp, *outp; local
92 if ((inp = fopen(inname,"rb")) == NULL) {
120 endfile = readframe(shortdata, inp, framelength);
153 fclose(inp);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 83 inp = "from __future__ import generators, print_function"
84 self.assertEqual(run(inp), fs(("generators", "print_function")))
85 inp ="from __future__ import print_function, generators"
86 self.assertEqual(run(inp), fs(("print_function", "generators")))
87 inp = "from __future__ import (print_function,)"
88 self.assertEqual(run(inp), fs(("print_function",)))
89 inp = "from __future__ import (generators, print_function)"
90 self.assertEqual(run(inp), fs(("generators", "print_function")))
91 inp = "from __future__ import (generators, nested_scopes)"
92 self.assertEqual(run(inp), fs(("generators", "nested_scopes"))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 83 inp = "from __future__ import generators, print_function"
84 self.assertEqual(run(inp), fs(("generators", "print_function")))
85 inp ="from __future__ import print_function, generators"
86 self.assertEqual(run(inp), fs(("print_function", "generators")))
87 inp = "from __future__ import (print_function,)"
88 self.assertEqual(run(inp), fs(("print_function",)))
89 inp = "from __future__ import (generators, print_function)"
90 self.assertEqual(run(inp), fs(("generators", "print_function")))
91 inp = "from __future__ import (generators, nested_scopes)"
92 self.assertEqual(run(inp), fs(("generators", "nested_scopes"))
    [all...]
  /external/syslinux/core/lwip/src/api/
tcpip.c 102 if (msg->msg.inp.netif->flags & (NETIF_FLAG_ETHARP | NETIF_FLAG_ETHERNET)) {
103 ethernet_input(msg->msg.inp.p, msg->msg.inp.netif);
107 ip_input(msg->msg.inp.p, msg->msg.inp.netif);
151 * to an IP header (if inp doesn't have NETIF_FLAG_ETHARP or
153 * @param inp the network interface on which the packet was received
156 tcpip_input(struct pbuf *p, struct netif *inp)
160 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_input: PACKET %p/%p\n", (void *)p, (void *)inp));
163 if (inp->flags & (NETIF_FLAG_ETHARP | NETIF_FLAG_ETHERNET))
    [all...]
  /external/ppp/pppd/
upap.c 319 u_char *inp; local
327 inp = inpacket;
332 GETCHAR(code, inp);
333 GETCHAR(id, inp);
334 GETSHORT(len, inp);
350 upap_rauthreq(u, inp, id, len);
354 upap_rauthack(u, inp, id, len);
358 upap_rauthnak(u, inp, id, len);
371 upap_rauthreq(u, inp, id, len)
373 u_char *inp;
    [all...]
eap.c 115 static void eap_input __P((int unit, u_char *inp, int inlen));
119 static int eap_printpkt __P((u_char *inp, int inlen,
345 b64enc(bs, inp, inlen, outp)
347 u_char *inp;
354 bs->bs_bits = (bs->bs_bits << 8) | *inp++;
393 b64dec(bs, inp, inlen, outp)
395 u_char *inp;
403 if ((cp = strchr(base64, *inp++)) == NULL)
1248 write_pseudonym(esp, inp, len, id)
1250 u_char *inp;
    [all...]
fsm.c 339 u_char *inp; local
347 inp = inpacket;
352 GETCHAR(code, inp);
353 GETCHAR(id, inp);
354 GETSHORT(len, inp);
376 fsm_rconfreq(f, id, inp, len);
380 fsm_rconfack(f, id, inp, len);
385 fsm_rconfnakrej(f, code, id, inp, len);
389 fsm_rtermreq(f, id, inp, len);
397 fsm_rcoderej(f, inp, len)
    [all...]
  /external/boringssl/src/crypto/aes/asm/
bsaes-x86_64.pl 107 my ($inp,$out,$len,$key,$ivp)=("%rdi","%rsi","%rdx","%rcx");
937 my ($out,$inp,$rounds,$const)=("%rax","%rcx","%r10d","%r11");
968 movdqu ($inp), %xmm7 # load round 0 key
969 lea 0x10($inp), $inp
977 movdqu ($inp), %xmm6 # load round 1 key
1020 lea 0x10($inp), $inp
1030 movdqu ($inp), %xmm6 # load next round key
1056 mov 240($inp),%r10d # pass round
    [all...]
aesni-x86.pl 83 $inp="esi";
183 # void $PREFIX_encrypt (const void *inp,void *out,const AES_KEY *key);
202 # void $PREFIX_decrypt (const void *inp,void *out,const AES_KEY *key);
424 &mov ($inp,&wparam(0));
440 &movdqu ($inout0,&QWP(0,$inp));
441 &movdqu ($inout1,&QWP(0x10,$inp));
442 &movdqu ($inout2,&QWP(0x20,$inp));
443 &movdqu ($inout3,&QWP(0x30,$inp));
444 &movdqu ($inout4,&QWP(0x40,$inp));
445 &movdqu ($inout5,&QWP(0x50,$inp));
    [all...]
  /external/boringssl/src/crypto/cipher/asm/
chacha20_poly1305_x86_64.pl 83 my ($oup,$inp,$inl,$adp,$keyp,$itr1,$itr2)=("%rdi","%rsi","%rbx","%rcx","%r9","%rcx","%r8");
261 $code.="movdqu 0*16 + $offset($inp), $A3
262 movdqu 1*16 + $offset($inp), $B3
263 movdqu 2*16 + $offset($inp), $C3
264 movdqu 3*16 + $offset($inp), $D3
278 movdqu 0*16 + $offset($inp), $temp
281 movdqu 1*16 + $offset($inp), $temp
284 movdqu 2*16 + $offset($inp), $temp
287 movdqu 3*16 + $offset($inp), $temp
506 mov $inp, $itr
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_uu.py 23 inp = cStringIO.StringIO(plaintext)
25 uu.encode(inp, out, "t1")
27 inp = cStringIO.StringIO(plaintext)
29 uu.encode(inp, out, "t1", 0644)
33 inp = cStringIO.StringIO(encodedtextwrapped % (0666, "t1"))
35 uu.decode(inp, out)
37 inp = cStringIO.StringIO(
43 uu.decode(inp, out)
47 inp = cStringIO.StringIO("begin 644 t1\n" + encodedtext)
50 uu.decode(inp, out)
    [all...]
  /external/llvm/utils/abtest/
mark_armfns.py 9 inp = open(sys.argv[1], "r").readlines() variable
19 for line in inp:
44 for line in inp:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_uu.py 23 inp = cStringIO.StringIO(plaintext)
25 uu.encode(inp, out, "t1")
27 inp = cStringIO.StringIO(plaintext)
29 uu.encode(inp, out, "t1", 0644)
33 inp = cStringIO.StringIO(encodedtextwrapped % (0666, "t1"))
35 uu.decode(inp, out)
37 inp = cStringIO.StringIO(
43 uu.decode(inp, out)
47 inp = cStringIO.StringIO("begin 644 t1\n" + encodedtext)
50 uu.decode(inp, out
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_uu.py 23 inp = cStringIO.StringIO(plaintext)
25 uu.encode(inp, out, "t1")
27 inp = cStringIO.StringIO(plaintext)
29 uu.encode(inp, out, "t1", 0644)
33 inp = cStringIO.StringIO(encodedtextwrapped % (0666, "t1"))
35 uu.decode(inp, out)
37 inp = cStringIO.StringIO(
43 uu.decode(inp, out)
47 inp = cStringIO.StringIO("begin 644 t1\n" + encodedtext)
50 uu.decode(inp, out
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_uu.py 23 inp = cStringIO.StringIO(plaintext)
25 uu.encode(inp, out, "t1")
27 inp = cStringIO.StringIO(plaintext)
29 uu.encode(inp, out, "t1", 0644)
33 inp = cStringIO.StringIO(encodedtextwrapped % (0666, "t1"))
35 uu.decode(inp, out)
37 inp = cStringIO.StringIO(
43 uu.decode(inp, out)
47 inp = cStringIO.StringIO("begin 644 t1\n" + encodedtext)
50 uu.decode(inp, out
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_uu.py 23 inp = cStringIO.StringIO(plaintext)
25 uu.encode(inp, out, "t1")
27 inp = cStringIO.StringIO(plaintext)
29 uu.encode(inp, out, "t1", 0644)
33 inp = cStringIO.StringIO(encodedtextwrapped % (0666, "t1"))
35 uu.decode(inp, out)
37 inp = cStringIO.StringIO(
43 uu.decode(inp, out)
47 inp = cStringIO.StringIO("begin 644 t1\n" + encodedtext)
50 uu.decode(inp, out
    [all...]

Completed in 1258 milliseconds

1 2 3 4 5 6 7 8 910