Searched refs:trans (Results 1 - 24 of 24) sorted by relevance

/seL4-camkes-master/projects/musllibc/src/ctype/
H A Dwctrans.c12 wint_t towctrans(wint_t wc, wctrans_t trans) argument
14 if (trans == (wctrans_t)1) return towupper(wc);
15 if (trans == (wctrans_t)2) return towlower(wc);
/seL4-camkes-master/projects/picotcp/modules/
H A Dpico_nat.c240 struct pico_trans *trans = NULL; local
245 trans = (struct pico_trans *)&tcp->trans;
251 trans = (struct pico_trans *)&udp->trans;
258 return trans;
263 struct pico_trans *trans = NULL; local
282 trans = pico_nat_generate_tuple_trans(net, f);
283 if(!trans)
286 return pico_ipv4_nat_add(net->dst, trans
427 struct pico_trans *trans = NULL; local
492 struct pico_trans *trans = NULL; local
[all...]
H A Dpico_udp.h28 struct pico_trans trans; variable in typeref:struct:pico_trans
H A Dpico_udp.c110 hdr->trans.sport = f->sock->local_port;
112 hdr->trans.dport = remote_endpoint->remote_port;
114 hdr->trans.dport = f->sock->remote_port;
H A Dpico_ipfilter.c440 struct pico_trans *trans; local
449 trans = (struct pico_trans *) f->transport_hdr;
450 temp.out_port = short_be(trans->dport);
451 temp.in_port = short_be(trans->sport);
H A Dpico_tcp.h17 struct pico_trans trans; variable in typeref:struct:pico_trans
H A Dpico_tcp.c959 TCPSTATE(&ts->sock) >> 8, short_be(hdr->trans.sport), short_be(hdr->trans.dport), SEQN(f), ACKN(f), hdr->flags, f->transport_len, (hdr->len & 0xf0) >> 2, f->payload_len );
971 hdr->trans.sport = ts->sock.local_port;
972 hdr->trans.dport = ts->sock.remote_port;
1239 hdr->trans.sport = ts->sock.local_port;
1240 hdr->trans.dport = ts->sock.remote_port;
1303 hdr->trans.sport = t->sock.local_port;
1304 hdr->trans.dport = t->sock.remote_port;
1355 hdr->trans.sport = t->sock.local_port;
1356 hdr->trans
[all...]
H A Dpico_6lowpan.c779 uint16_t sport = hdr->trans.sport, dport = hdr->trans.dport;
837 hdr->trans.sport = xF0B0 | short_be((uint16_t)(buf[1] >> 4));
838 hdr->trans.dport = xF0B0 | short_be((uint16_t)(buf[1] & 0xff));
841 hdr->trans.dport = short_be((uint16_t)(((uint16_t)buf[2] << 8) | (uint16_t)buf[3]));
842 hdr->trans.sport = xF000 | short_be((uint16_t)buf[1]);
845 hdr->trans.sport = short_be((uint16_t)(((uint16_t)buf[1] << 8) | (uint16_t)buf[2]));
846 hdr->trans.dport = xF000 | short_be((uint16_t)buf[3]);
849 buf_move((uint8_t *)&hdr->trans, &buf[1], 4);
1549 lp_dbg("6LP: FIN: "GRN"reassembly"RST" with tag '%u', stats: len: %d net: %d trans
[all...]
/seL4-camkes-master/tools/rumprun/platform/xen/librumpxen_xendev/
H A Dbusdev_user.c57 struct xenbus_dev_transaction *trans; member in union:xenbus_dev_request::__anon904
99 struct xenbus_dev_transaction *trans; local
101 LIST_FOREACH(trans, &du->transactions, entry)
102 if (trans->tx_id == dc->wbuf.msg.tx_id)
103 return trans;
211 struct xenbus_dev_transaction *trans; local
247 req->u.trans = xbd_malloc(sizeof(*req->u.trans));
248 if (!req->u.trans) {
258 req->u.trans
574 struct xenbus_dev_transaction *trans, *trans_tmp; local
[all...]
/seL4-camkes-master/projects/musllibc/src/locale/
H A Dlocale_map.c9 const char *trans = 0; local
10 if (lm) trans = __mo_lookup(lm->map, lm->map_size, msg);
11 return trans ? trans : msg;
H A Ddcngettext.c188 const char *trans = __mo_lookup(p->map, p->map_size, msgid1); local
189 if (!trans) goto notrans;
193 if (!msgid2) return (char *)trans;
226 size_t rem = p->map_size - (trans - (char *)p->map);
227 size_t l = strnlen(trans, rem);
230 trans += l+1;
233 return (char *)trans;
/seL4-camkes-master/projects/musllibc/src/time/
H A D__tz.c23 static const unsigned char *zi, *trans, *index, *types, *abbrevs, *abbrevs_end; variable
181 trans = zi+skip+44+44;
184 trans = zi+44;
186 index = trans + (zi_read32(trans-12) << scale);
187 types = index + zi_read32(trans-12);
188 abbrevs = types + 6*zi_read32(trans-8);
189 abbrevs_end = abbrevs + zi_read32(trans-4);
245 int scale = 3 - (trans == zi+44);
249 size_t a = 0, n = (index-trans)>>scal
[all...]
/seL4-camkes-master/projects/musllibc/src/regex/
H A Dregcomp.c2461 tre_tnfa_transition_t *trans; local
2478 /* Set `trans' to point to the next unused transition from
2480 trans = transitions + offs[p1->position];
2481 while (trans->state != NULL)
2495 if (trans->state_id == p2->position)
2500 trans++;
2503 if (trans->state == NULL)
2504 (trans + 1)->state = NULL;
2507 trans->code_min = p1->code_min;
2508 trans
2897 tre_tnfa_transition_t *trans; local
[all...]
/seL4-camkes-master/projects/picotcp/test/unit/
H A Dunit_ipv4.c96 udp->trans.sport = short_be(5555);
97 udp->trans.dport = short_be(6667);
152 udp->trans.sport = sport_ori;
153 udp->trans.dport = dport_ori;
169 nat_port = udp->trans.sport;
171 udp->trans.sport = sport_ori; /* restore original sport */
174 fail_if(udp->trans.sport != nat_port, "frames with the same source IP, source PORT and PROTO did not get translated the same");
177 nat_port = udp->trans.sport;
179 udp->trans.sport = short_be(5556); /* change sport */
182 fail_if(udp->trans
[all...]
/seL4-camkes-master/tools/rumprun/platform/xen/xen/include/mini-os/
H A Dxenbus.h77 xenbus_transaction_t trans,
/seL4-camkes-master/tools/cogent/impl/fs/bilby/c/
H A Dpackobj.c63 ch->trans = trans_pos;
H A Dostore.c831 bilbyfs_err("Unknown trans pos value %x", pos);
863 last = check_trans_pos(trans_nb_obj, obj->trans);
866 bilbyfs_err("Invalid trans pos value 0x%x, this may just"
867 "be because of a power-failure.", obj->trans);
H A Dbilbyfs.h439 * @trans: position in transaction (%BILBYFS_TRANS_*)
451 __u8 trans; member in struct:obj_ch
1181 * `trans' propertry stored in objects' header.
1280 /* ostore_unmount: free all memory allocated by trans.
1283 * This function frees all the memory allocated by trans.
/seL4-camkes-master/projects/picotcp/stack/
H A Dpico_socket.c2243 struct pico_trans *trans = (struct pico_trans*) f->transport_hdr; local
2251 port = pico_get_sockport(proto, trans->sport);
2257 port = pico_get_sockport(proto, trans->sport);
2271 if (trans->dport == s->remote_port) {
/seL4-camkes-master/tools/rumprun/platform/xen/xen/xenbus/
H A Dxenbus.c528 xenbus_transaction_t trans,
541 xenbus_xb_write(type, id, trans, io, nr_reqs);
527 xenbus_msg_reply(int type, xenbus_transaction_t trans, struct write_req *io, int nr_reqs) argument
/seL4-camkes-master/tools/cogent/impl/fs/bilby/quickcheck/fsm_example/build/
H A Dfsm_wrapper_pp_inferred.c218 u8 trans; member in struct:t18
/seL4-camkes-master/tools/riscv-pk/
H A Dconfigure963 | --program-trans | --program-tran \
971 | --program-trans=* | --program-tran=* \
/seL4-camkes-master/projects/projects_libs/libjansson/jansson-2.7/
H A Dconfigure1045 | --program-trans | --program-tran \
1053 | --program-trans=* | --program-tran=* \
/seL4-camkes-master/tools/rumprun/tests/configure/
H A Dconfigure1056 | --program-trans | --program-tran \
1064 | --program-trans=* | --program-tran=* \

Completed in 456 milliseconds