Searched refs:tmp (Results 1 - 25 of 151) sorted by last modified time

1234567

/seL4-camkes-master/projects/camkes/apps/rumprun_ethernet/components/reverse_string/
H A Dserver.c23 char tmp = buffer_str[i]; local
25 buffer_str[swap_idx] = tmp;
/seL4-camkes-master/projects/camkes/apps/reversestring/src/
H A Dserver.c28 char tmp = buffer_str[i]; local
30 buffer_str[swap_idx] = tmp;
/seL4-camkes-master/projects/camkes/apps/multiassembly/components/Reverse/src/
H A Dmain.c15 char tmp = str[i]; local
17 str[last_idx-i] = tmp;
/seL4-camkes-master/projects/camkes/apps/hierarchical-components/components/Reverse/src/
H A Dmain.c15 char tmp = str[i]; local
17 str[last_idx-i] = tmp;
/seL4-camkes-master/tools/seL4/misc/
H A Dwhence.py30 self.tmp = tempfile.mkdtemp()
31 subprocess.check_call(['git', 'clone', url, self.tmp])
34 subprocess.check_call(['git', 'checkout', commit], cwd=self.tmp)
39 cwd=os.path.join(self.tmp, subdir)).split())
42 shutil.rmtree(self.tmp)
97 src = os.path.join(upstream.tmp, opts.upstream_subdir)
98 dst = os.path.join(downstream.tmp, opts.downstream_subdir)
/seL4-camkes-master/projects/seL4_libs/libsel4muslcsys/src/
H A Dvsyscall.c324 static void NO_INLINE update_ipc_buffer(seL4_IPCBuffer *tmp) argument
326 __sel4_ipc_buffer = tmp;
332 seL4_IPCBuffer *tmp = __sel4_ipc_buffer; local
334 update_ipc_buffer(tmp);
/seL4-camkes-master/projects/global-components/remote-drivers/picotcp-socket-sync/server/
H A Dkhash.h291 { khkey_t tmp = h->keys[i]; h->keys[i] = key; key = tmp; } \
292 if (kh_is_map) { khval_t tmp = h->vals[i]; h->vals[i] = val; val = tmp; } \
/seL4-camkes-master/projects/lwip/test/fuzz/
H A Doutput_to_pcap.sh15 hexdump -C $i > $1/$$.tmp
16 text2pcap $1/$$.tmp ${i}.pcap
23 hexdump -C $i > $1/$$.tmp
24 text2pcap $1/$$.tmp ${i}.pcap
27 rm -f $1/$$.tmp
/seL4-camkes-master/projects/lwip/src/netif/ppp/
H A Dvj.c504 u32_t tmp; local
550 tmp = lwip_ntohl(th->ackno) + i;
551 th->ackno = lwip_htonl(tmp);
552 tmp = lwip_ntohl(th->seqno) + i;
553 th->seqno = lwip_htonl(tmp);
559 tmp = lwip_ntohl(th->seqno) + lwip_ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen;
560 th->seqno = lwip_htonl(tmp);
605 tmp = n0->tot_len - vjlen + cs->cs_hlen;
606 IPH_LEN_SET(&cs->cs_ip, lwip_htons((u16_t)tmp));
614 for (tmp
[all...]
H A Dmagic.c164 u_char tmp[MD5_HASH_SIZE]; local
172 lwip_md5_finish(&md5_ctx, tmp);
176 MEMCPY(buf, tmp, n);
/seL4-camkes-master/projects/lwip/src/core/
H A Dtcp_in.c1509 struct tcp_seg *tmp; local
1516 tmp = next;
1518 tcp_seg_free(tmp);
H A Dinet_chksum.c195 u32_t sum = 0, tmp; local
214 tmp = sum + *pl++; /* ping */
215 if (tmp < sum) {
216 tmp++; /* add back carry */
219 sum = tmp + *pl++; /* pong */
220 if (sum < tmp) {
H A Ddef.c202 char *tmp = result + bufsize - 1; local
219 *tmp = 0;
220 while ((n != 0) && (tmp > res)) {
222 tmp--;
223 *tmp = val;
231 if (*tmp == 0) {
238 memmove(res, tmp, (size_t)((result + bufsize) - tmp));
/seL4-camkes-master/projects/lwip/src/core/ipv6/
H A Dip6_frag.c115 struct ip6_reassdata *r, *tmp; local
131 tmp = r;
135 ip6_reass_free_complete_datagram(tmp);
/seL4-camkes-master/projects/lwip/src/core/ipv4/
H A Dip4_frag.c143 struct ip_reassdata *tmp; local
145 tmp = r;
149 ip_reass_free_complete_datagram(tmp, prev);
755 u16_t tmp; local
767 tmp = lwip_ntohs(IPH_OFFSET(iphdr));
768 ofo = tmp & IP_OFFMASK;
770 mf_set = tmp & IP_MF;
855 tmp = (IP_OFFMASK & (ofo));
858 tmp = tmp | IP_M
[all...]
/seL4-camkes-master/projects/lwip/src/apps/snmp/
H A Dsnmp_mib2_ip.c326 ip4_addr_t tmp; local
327 ip4_addr_get_network(&tmp, netif_ip4_addr(netif), netif_ip4_netmask(netif));
328 value->u32 = tmp.addr;
/seL4-camkes-master/projects/lwip/src/apps/lwiperf/
H A Dlwiperf.c458 u8_t tmp; local
528 tmp = pbuf_remove_header(p, 24);
529 LWIP_ASSERT("pbuf_remove_header failed", tmp == 0);
530 LWIP_UNUSED_ARG(tmp); /* for LWIP_NOASSERT */
/seL4-camkes-master/projects/lwip/src/apps/http/
H A Dhttpd.c845 char *tmp; local
897 tmp = strchr(uri, '.');
898 while (tmp) {
899 ext = tmp + 1;
900 tmp = strchr(ext, '.');
/seL4-camkes-master/kernel/src/arch/x86/32/
H A Dtraps.S56 #define SET_SELECTOR(selector, value, tmp) \
57 movl %selector, %tmp; \
58 cmpl $value, %tmp; \
60 movl $value, %tmp; \
61 movl %tmp, %selector; \
76 #define RESET_SELECTORS(tmp) \
77 SET_SELECTOR(ds, SEL_DS_3, tmp) \
78 SET_SELECTOR(es, SEL_DS_3, tmp) \
79 SET_SELECTOR(fs, SEL_FS, tmp) \
80 SET_SELECTOR(gs, SEL_GS, tmp)
[all...]
/seL4-camkes-master/kernel/manual/tools/libsel4_tools/
H A Dchanged.sh31 TMP_FILE=`mktemp /tmp/XXXXXXXX`
/seL4-camkes-master/kernel/libsel4/tools/
H A Dchanged.sh31 TMP_FILE=`mktemp /tmp/XXXXXXXX`
/seL4-camkes-master/kernel/tools/
H A Dchanged.sh31 TMP_FILE=`mktemp /tmp/XXXXXXXX`
/seL4-camkes-master/kernel/include/arch/arm/arch/32/mode/
H A Dmachine.h129 word_t tmp; local
130 asm volatile("strex r0, r1, [%0]" : : "r"(&tmp) : "r0");
/seL4-camkes-master/tools/seL4/elfloader-tool/include/arch-arm/64/mode/
H A Dassembler.h69 .macro enable_mmu sctlr tmp
70 mrs \tmp, \sctlr
71 orr \tmp, \tmp, #(1 << 0) variable
72 orr \tmp, \tmp, #(1 << 2) variable
73 orr \tmp, \tmp, #(1 << 12) variable
74 msr \sctlr, \tmp
78 .macro disable_mmu sctlr tmp
80 bic \\tmp, \\tmp, #(1 << 0) variable
81 bic \\tmp, \\tmp, #(1 << 2) variable
82 bic \\tmp, \\tmp, #(1 << 12) variable
89 bic \\tmp, \\tmp, #(1 << 2) variable
90 bic \\tmp, \\tmp, #(1 << 12) variable
[all...]
/seL4-camkes-master/projects/util_libs/libethdrivers/src/plat/tx2/uboot/
H A Dmiiphyutil.c335 unsigned short tmp; local
337 if (miiphy_read(devname, addr, MII_PHYSID2, &tmp) != 0) {
341 reg = tmp;
350 if (miiphy_read(devname, addr, MII_PHYSID1, &tmp) != 0) {
354 reg |= tmp << 16;

Completed in 222 milliseconds

1234567