Searched refs:tp (Results 1 - 25 of 126) sorted by relevance

123456

/barrelfish-2018-10-04/lib/libc/arm/gen/
H A D_set_tp.c36 _set_tp(void *tp) argument
40 *((struct tcb **)ARM_TP_ADDRESS) = tp;
42 sysarch(ARM_SET_TP, tp);
/barrelfish-2018-10-04/lib/tzcode/zic/
H A Dscheck.c28 register char * tp; local
40 tp = fbuf;
41 while ((*tp++ = c = *fp++) != '\0') {
45 *tp++ = *fp++;
48 *tp++ = '*';
52 *tp++ = *fp++;
54 *tp++ = *fp++;
56 do *tp++ = *fp++;
58 if ((*tp++ = *fp++) == '\0')
61 *(tp
[all...]
/barrelfish-2018-10-04/lib/libc/amd64/gen/
H A D_set_tp.c35 _set_tp(void *tp) argument
38 amd64_set_fsbase(tp);
/barrelfish-2018-10-04/lib/posixcompat/
H A Dinet_pton.c82 u_char tmp[NS_INADDRSZ], *tp; local
86 *(tp = tmp) = 0;
91 u_int new = *tp * 10 + (pch - digits);
93 if (saw_digit && *tp == 0)
97 *tp = new;
106 *++tp = 0;
137 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
142 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
143 endp = tp + NS_IN6ADDRSZ;
169 colonp = tp;
[all...]
H A Dinet_ntop.c110 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp; local
153 tp = tmp;
159 *tp++ = ':';
164 *tp++ = ':';
169 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
171 tp += strlen(tp);
174 tp += sprintf(tp, "
[all...]
/barrelfish-2018-10-04/lib/libc/aarch64/gen/
H A D_set_tp.c39 _set_tp(void *tp) argument
42 asm volatile("msr tpidr_el0, %0" : : "r"(tp));
/barrelfish-2018-10-04/lib/libc/riscv/gen/
H A D_set_tp.c46 _set_tp(void *tp) argument
49 __asm __volatile("mv tp, %0" :: "r"((char*)tp + 0x10));
/barrelfish-2018-10-04/lib/libc/string/
H A Dmemccpy.c43 unsigned char *tp = t; local
47 if ((*tp++ = *fp++) == uc)
48 return (tp);
H A Dswab.c46 char *fp, *tp; local
52 tp = (char *)to;
53 #define STEP temp = *fp++,*tp++ = *fp++,*tp++ = temp
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/idea/
H A Di_skey.c100 register IDEA_INT *fp,*tp,t; local
102 tp= &(dk->data[0][0]);
106 *(tp++)=inverse(fp[0]);
107 *(tp++)=((int)(0x10000L-fp[2])&0xffff);
108 *(tp++)=((int)(0x10000L-fp[1])&0xffff);
109 *(tp++)=inverse(fp[3]);
112 *(tp++)=fp[4];
113 *(tp++)=fp[5];
116 tp= &(dk->data[0][0]);
117 t=tp[
[all...]
/barrelfish-2018-10-04/lib/libc/gen/
H A Dtimes.c48 times(tp)
49 struct tms *tp;
57 tp->tms_utime = CONVTCK(ru.ru_utime);
58 tp->tms_stime = CONVTCK(ru.ru_stime);
61 tp->tms_cutime = CONVTCK(ru.ru_utime);
62 tp->tms_cstime = CONVTCK(ru.ru_stime);
/barrelfish-2018-10-04/lib/libc/inet/
H A Dinet_pton.c83 u_char tmp[NS_INADDRSZ], *tp; local
87 *(tp = tmp) = 0;
92 u_int new = *tp * 10 + (pch - digits);
94 if (saw_digit && *tp == 0)
98 *tp = new;
107 *++tp = 0;
136 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
141 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
142 endp = tp + NS_IN6ADDRSZ;
168 colonp = tp;
[all...]
H A Dinet_ntop.c114 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp; local
155 tp = tmp;
161 *tp++ = ':';
166 *tp++ = ':';
171 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp))) {
175 tp += strlen(tp);
178 tp += sprintf(tp, "
[all...]
/barrelfish-2018-10-04/lib/libc/tests/stdio/
H A Dfdopen_test.c197 ATF_TP_ADD_TCS(tp)
200 ATF_TP_ADD_TC(tp, null__O_RDONLY__r_test);
201 ATF_TP_ADD_TC(tp, null__O_WRONLY__r_test);
202 ATF_TP_ADD_TC(tp, null__O_RDWR__r_test);
203 ATF_TP_ADD_TC(tp, null__O_RDONLY__w_test);
204 ATF_TP_ADD_TC(tp, null__O_WRONLY__w_test);
205 ATF_TP_ADD_TC(tp, null__O_RDWR__w_test);
206 ATF_TP_ADD_TC(tp, null__O_RDONLY__a_test);
207 ATF_TP_ADD_TC(tp, null__O_WRONLY__a_test);
208 ATF_TP_ADD_TC(tp, null__O_RDWR__tes
[all...]
H A Dfreopen_test.c195 ATF_TP_ADD_TCS(tp)
198 ATF_TP_ADD_TC(tp, null__r__r__test);
199 ATF_TP_ADD_TC(tp, null__w__r__test);
200 ATF_TP_ADD_TC(tp, null__r_append__r__test);
201 ATF_TP_ADD_TC(tp, null__r__w__test);
202 ATF_TP_ADD_TC(tp, null__w__w__test);
203 ATF_TP_ADD_TC(tp, null__r_append__w__test);
204 ATF_TP_ADD_TC(tp, null__r__a__test);
205 ATF_TP_ADD_TC(tp, null__w__a__test);
206 ATF_TP_ADD_TC(tp, null__r_append__a__tes
[all...]
H A Dfopen_test.c181 ATF_TP_ADD_TCS(tp)
184 ATF_TP_ADD_TC(tp, fopen_r_test);
185 ATF_TP_ADD_TC(tp, fopen_r_append_test);
186 ATF_TP_ADD_TC(tp, fopen_w_test);
187 ATF_TP_ADD_TC(tp, fopen_w_append_test);
188 ATF_TP_ADD_TC(tp, fopen_a_test);
189 ATF_TP_ADD_TC(tp, fopen_a_append_test);
190 ATF_TP_ADD_TC(tp, fopen_re_test);
191 ATF_TP_ADD_TC(tp, fopen_r_append_e_test);
192 ATF_TP_ADD_TC(tp, fopen_we_tes
[all...]
H A Dprint_positional_test.c148 ATF_TP_ADD_TCS(tp)
151 ATF_TP_ADD_TC(tp, positional_normal);
152 ATF_TP_ADD_TC(tp, positional_wide);
153 ATF_TP_ADD_TC(tp, positional_precision);
154 ATF_TP_ADD_TC(tp, positional_precision_wide);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/asm/
H A Dsparcv9-mont.pl71 $tp="%l4";
114 add %sp,$bias+$frame,$tp
140 st $car1,[$tp]
145 add $tp,4,$tp ! tp++
155 st $car1,[$tp]
163 st $car1,[$tp+4]
167 st $car1,[$tp+8]
174 add %sp,$bias+$frame,$tp
[all...]
H A Darmv4-mont.pl26 $num="r0"; # starts as num argument, but holds &tp[num-1]
30 $tp="r4";
43 #### argument block layout relative to &tp[num-1], a.k.a. $num
72 add $tp,$bp,$num @ &bp[num-1]
74 add $num,sp,$num @ $num to point at &tp[num-1]
80 str $tp,[$_bpend] @ save &bp[num]
84 mul $n0,$alo,$n0 @ "tp[0]"*n0
87 mov $tp,sp
98 str $nlo,[$tp],#4 @ tp[
[all...]
H A Dppc-mont.pl94 $tp="r16";
147 addi $tp,$sp,$FRAME
154 $UMULL $m1,$lo0,$n0 ; "tp[0]"*n0
184 $ST $lo1,0($tp) ; tp[j-1]
187 addi $tp,$tp,$BNSZ ; tp++
197 $ST $lo1,0($tp) ; tp[
[all...]
/barrelfish-2018-10-04/lib/libc/tests/string/
H A Dstrxfrm_test.c46 ATF_TP_ADD_TCS(tp)
48 ATF_TP_ADD_TC(tp, iso_8859_5);
H A Dstrerror_test.c187 ATF_TP_ADD_TCS(tp)
190 ATF_TP_ADD_TC(tp, strerror_unknown_error);
191 ATF_TP_ADD_TC(tp, strerror_no_error);
192 ATF_TP_ADD_TC(tp, strerror_EPERM_test);
193 ATF_TP_ADD_TC(tp, strerror_EPFNOSUPPORT_test);
194 ATF_TP_ADD_TC(tp, strerror_ELAST_test);
195 ATF_TP_ADD_TC(tp, strerror_r__unknown_error);
196 ATF_TP_ADD_TC(tp, strerror_r__EPERM_one_byte_short);
197 ATF_TP_ADD_TC(tp, strerror_r__EPERM_unknown_error_one_byte_short);
198 ATF_TP_ADD_TC(tp, strerror_r__EPERM_unknown_error_two_bytes_shor
[all...]
/barrelfish-2018-10-04/lib/libc/tests/net/
H A Deui64_aton_test.c94 ATF_TP_ADD_TCS(tp)
97 ATF_TP_ADD_TC(tp, id_ascii);
98 ATF_TP_ADD_TC(tp, id_colon_ascii);
99 ATF_TP_ADD_TC(tp, mac_ascii);
100 ATF_TP_ADD_TC(tp, mac_colon_ascii);
101 ATF_TP_ADD_TC(tp, hex_ascii);
H A Dether_test.c174 ATF_TP_ADD_TCS(tp)
177 ATF_TP_ADD_TC(tp, ether_line);
178 ATF_TP_ADD_TC(tp, ether_line_bad_1);
179 ATF_TP_ADD_TC(tp, ether_line_bad_2);
180 ATF_TP_ADD_TC(tp, ether_aton_r);
181 ATF_TP_ADD_TC(tp, ether_aton_r_bad);
182 ATF_TP_ADD_TC(tp, ether_aton);
183 ATF_TP_ADD_TC(tp, ether_aton_bad);
184 ATF_TP_ADD_TC(tp, ether_ntoa_r);
185 ATF_TP_ADD_TC(tp, ether_nto
[all...]
/barrelfish-2018-10-04/lib/libc/tests/iconv/
H A Diconvctl_test.c63 ATF_TP_ADD_TCS(tp)
66 ATF_TP_ADD_TC(tp, iconvctl_trivialp_test);

Completed in 206 milliseconds

123456