Searched defs:inp (Results 1 - 25 of 87) sorted by relevance

1234

/external/fio/oslib/
H A Dinet_aton.c3 int inet_aton(const char *cp, struct in_addr *inp) argument
5 return inet_pton(AF_INET, cp, inp);
/external/llvm/utils/abtest/
H A Dmark_armfns.py9 inp = open(sys.argv[1], "r").readlines() variable
19 for line in inp:
44 for line in inp:
H A Dmark_aarch64fns.py9 inp = open(sys.argv[1], "r").readlines() variable
21 for line in inp:
55 for line in inp:
/external/boringssl/src/crypto/dh/
H A Ddh_asn1.c134 DH *d2i_DHparams(DH **out, const uint8_t **inp, long len) { argument
139 CBS_init(&cbs, *inp, (size_t)len);
148 *inp = CBS_data(&cbs);
/external/syslinux/core/lwip/src/core/ipv4/
H A Dicmp.c74 * @param inp the netif on which this packet was received
77 icmp_input(struct pbuf *p, struct netif *inp) argument
119 if (ip_addr_isbroadcast(&current_iphdr_dest, inp)) {
219 ICMP_TTL, 0, IP_PROTO_ICMP, inp);
/external/tensorflow/tensorflow/cc/ops/
H A Dconst_op.cc56 NodeBuilder::NodeOut AsNodeOut(const Scope& scope, const Input& inp) { argument
57 if (!inp.status().ok()) {
58 scope.UpdateStatus(inp.status());
59 return NodeBuilder::NodeOut(inp.node(), inp.index());
61 if (inp.node()) {
62 return NodeBuilder::NodeOut(inp.node(), inp.index());
64 if (!inp.node_name().empty()) {
65 return NodeBuilder::NodeOut(inp
72 AsNodeOutList(const Scope& scope, const InputList& inp) argument
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dcast_op.cc61 const Tensor& inp = ctx->input(0); local
63 ctx->set_output(0, inp);
66 OP_REQUIRES_OK(ctx, ctx->allocate_output(0, inp.shape(), &out));
67 work_(ctx, inp, out);
H A Dconcat_lib_cpu.h57 std::vector<const T*> inp; local
58 inp.reserve(num_inputs);
60 inp.push_back(&(*input)(0, 0));
66 copier.Copy(out, inp[j], j, size);
68 inp[j] += size;
91 const T* inp = &(*inputs[j])(skipped_rows, 0);
94 inp += offset;
99 copier.Copy(out, inp, j, size);
109 std::vector<const T*> inp;
110 inp
148 std::vector<const T*> inp; local
[all...]
/external/boringssl/src/crypto/pkcs7/
H A Dpkcs7_x509.c94 const uint8_t *inp; local
103 inp = CBS_data(&crl_data);
104 crl = d2i_X509_CRL(NULL, &inp, (long)CBS_len(&crl_data));
109 assert(inp == CBS_data(&crl_data) + CBS_len(&crl_data));
/external/syslinux/core/lwip/src/core/
H A Draw.c67 * @param inp network interface on which the datagram was received.
76 raw_input(struct pbuf *p, struct netif *inp) argument
83 LWIP_UNUSED_ARG(inp);
98 if ((pcb->so_options & SOF_BROADCAST) || !ip_addr_isbroadcast(&current_iphdr_dest, inp))
/external/tensorflow/tensorflow/core/common_runtime/
H A Dmemory_types.cc61 MemTypeMap inp; local
69 VLOG(2) << "inp mvec " << n->id() << " " << i << " " << inp_mvec[i];
70 inp[{n->id(), static_cast<int>(i)}] = inp_mvec[i];
83 MemoryType dm = gtl::FindWithDefault(inp, {e->dst()->id(), e->dst_input()},
/external/tensorflow/tensorflow/core/framework/
H A Dbfloat16_test.cc126 float* inp = new float[N]; local
131 FloatToBFloat16(inp, out, N);
133 delete[] inp;
145 bfloat16* inp = new bfloat16[N]; local
150 BFloat16ToFloat(inp, out, N);
152 delete[] inp;
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
H A DtestG711.cc27 bool readframe(int16_t* data, FILE* inp, size_t length) { argument
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/boringssl/src/crypto/dsa/
H A Ddsa_asn1.c229 DSA_SIG *d2i_DSA_SIG(DSA_SIG **out_sig, const uint8_t **inp, long len) { argument
234 CBS_init(&cbs, *inp, (size_t)len);
243 *inp = CBS_data(&cbs);
257 DSA *d2i_DSAPublicKey(DSA **out, const uint8_t **inp, long len) { argument
262 CBS_init(&cbs, *inp, (size_t)len);
271 *inp = CBS_data(&cbs);
285 DSA *d2i_DSAPrivateKey(DSA **out, const uint8_t **inp, long len) { argument
290 CBS_init(&cbs, *inp, (size_t)len);
299 *inp = CBS_data(&cbs);
313 DSA *d2i_DSAparams(DSA **out, const uint8_t **inp, lon argument
[all...]
/external/boringssl/src/crypto/ecdsa_extra/
H A Decdsa_asn1.c249 ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **out, const uint8_t **inp, long len) { argument
254 CBS_init(&cbs, *inp, (size_t)len);
263 *inp = CBS_data(&cbs);
/external/boringssl/src/crypto/evp/
H A Devp_asn1.c236 EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **out, const uint8_t **inp, argument
245 CBS_init(&cbs, *inp, (size_t)len);
250 CBS_init(&cbs, *inp, (size_t)len);
266 *inp = CBS_data(&cbs);
292 EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **out, const uint8_t **inp, long len) { argument
300 CBS_init(&cbs, *inp, (size_t)len);
307 *inp = CBS_data(&cbs);
313 switch (num_elements(*inp, (size_t)len)) {
315 return d2i_PrivateKey(EVP_PKEY_EC, out, inp, len);
318 return d2i_PrivateKey(EVP_PKEY_DSA, out, inp, le
[all...]
/external/boringssl/src/crypto/rsa_extra/
H A Drsa_asn1.c249 RSA *d2i_RSAPublicKey(RSA **out, const uint8_t **inp, long len) { argument
254 CBS_init(&cbs, *inp, (size_t)len);
263 *inp = CBS_data(&cbs);
277 RSA *d2i_RSAPrivateKey(RSA **out, const uint8_t **inp, long len) { argument
282 CBS_init(&cbs, *inp, (size_t)len);
291 *inp = CBS_data(&cbs);
/external/boringssl/src/decrepit/xts/
H A Dxts.c65 const uint8_t iv[16], const uint8_t *inp,
84 OPENSSL_memcpy(scratch.c, inp, 16);
88 scratch.u[0] = ((uint64_t *)inp)[0] ^ tweak.u[0];
89 scratch.u[1] = ((uint64_t *)inp)[1] ^ tweak.u[1];
100 inp += 16;
115 uint8_t c = inp[i];
138 OPENSSL_memcpy(scratch.c, inp, 16);
142 scratch.u[0] = ((uint64_t *)inp)[0] ^ tweak1.u[0];
143 scratch.u[1] = ((uint64_t *)inp)[1] ^ tweak1.u[1];
150 uint8_t c = inp[1
64 CRYPTO_xts128_encrypt(const XTS128_CONTEXT *ctx, const uint8_t iv[16], const uint8_t *inp, uint8_t *out, size_t len, int enc) argument
[all...]
/external/cn-cbor/test/
H A Dcbor_test.c34 static bool parse_hex(char *inp, buffer *b) argument
36 int len = strlen(inp);
46 sscanf(inp+(2*i), "%02hhx", &b->ptr[i]);
/external/libmojo/third_party/markupsafe/
H A D_speedups.c59 Py_UNICODE *inp = PyUnicode_AS_UNICODE(in); local
66 while (*(inp) || inp < inp_end) {
67 if (*inp < ESCAPED_CHARS_TABLE_SIZE) {
68 delta += escaped_chars_delta_len[*inp];
69 erepl += !!escaped_chars_delta_len[*inp];
71 ++inp;
85 inp = PyUnicode_AS_UNICODE(in);
88 next_escp = inp;
98 if (next_escp > inp) {
[all...]
/external/libxaac/decoder/
H A Dixheaacd_mps_temp_reshape.c52 WORD32 inp, WORD32 ch,
66 switch (inp) {
51 ixheaacd_mps_est_normalized_envelope(ia_mps_dec_state_struct *self, WORD32 inp, WORD32 ch, FLOAT32 *env) argument
/external/ppp/pppd/
H A Dfsm.c339 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, le
[all...]
/external/python/cpython2/Parser/
H A Dtokenizer.h17 /* Input state; buf <= cur <= inp <= end */
21 char *inp; /* End of data in buffer */ member in struct:tok_state
25 /* NB If done != E_OK, cur must be == inp!!! */
/external/syslinux/core/lwip/src/api/
H A Dtcpip.c102 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) argument
160 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_input: PACKET %p/%p\n", (void *)p, (void *)inp));
163 if (inp
[all...]
/external/syslinux/core/lwip/src/include/lwip/
H A Dtcpip.h89 err_t tcpip_input(struct pbuf *p, struct netif *inp);
138 } inp; member in union:tcpip_msg::__anon23834

Completed in 520 milliseconds

1234