Home
last modified time | relevance | path

Searched refs:tmpc (Results 1 – 5 of 5) sorted by relevance

/external/musl/
Dconfigure73 echo "typedef int x;" > "$tmpc"
74 echo "#if $1" >> "$tmpc"
75 echo "#error yes" >> "$tmpc"
76 echo "#endif" >> "$tmpc"
77 if $CC $2 -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
88 echo "typedef int x;" > "$tmpc"
89 if $CC $CFLAGS_TRY $2 -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
102 echo "typedef int x;" > "$tmpc"
103 if $CC $LDFLAGS_TRY -nostdlib -shared "$2" -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
215 tmpc="./conf$$-$PPID-$i.c"
[all …]
/external/wpa_supplicant_8/src/tls/
Dlibtommath.c250 register mp_digit u, *tmpa, *tmpb, *tmpc; in s_mp_add() local
262 tmpc = c->dp; in s_mp_add()
268 *tmpc = *tmpa++ + *tmpb++ + u; in s_mp_add()
271 u = *tmpc >> ((mp_digit)DIGIT_BIT); in s_mp_add()
274 *tmpc++ &= MP_MASK; in s_mp_add()
283 *tmpc = x->dp[i] + u; in s_mp_add()
286 u = *tmpc >> ((mp_digit)DIGIT_BIT); in s_mp_add()
289 *tmpc++ &= MP_MASK; in s_mp_add()
294 *tmpc++ = u; in s_mp_add()
298 *tmpc++ = 0; in s_mp_add()
[all …]
/external/wpa_supplicant_8/src/p2p/
Dp2p_utils.c325 const struct p2p_channels *tmpc = channels ? in p2p_get_pref_freq() local
328 if (tmpc == NULL) in p2p_get_pref_freq()
334 if (p2p_channels_includes_freq(tmpc, freq)) in p2p_get_pref_freq()
/external/llvm/test/Transforms/InstCombine/
Dcast_ptr.ll16 %tmpc = ptrtoint i8* %t to i32 ; <i32> [#uses=1]
17 %tmpa = add i32 %tmpc, 32 ; <i32> [#uses=1]
/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_progs.c299 char tmpc; in is_jit_enabled() local
301 if (read(sysctl_fd, &tmpc, sizeof(tmpc)) == 1) in is_jit_enabled()
302 enabled = (tmpc != '0'); in is_jit_enabled()