/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | x_int64.c | 52 uint64_t utmp; in uint64_i2c() local 58 memcpy(&utmp, cp, sizeof(utmp)); in uint64_i2c() 61 && utmp == 0) in uint64_i2c() 64 && (int64_t)utmp < 0) { in uint64_i2c() 66 utmp = 0 - utmp; in uint64_i2c() 70 return ossl_i2c_uint64_int(cont, utmp, neg); in uint64_i2c() 76 uint64_t utmp = 0; in uint64_c2i() local 94 if (!ossl_c2i_uint64_int(&utmp, in uint64_c2i() 147 uint32_t utmp; uint32_i2c() local 178 uint64_t utmp = 0; uint32_c2i() local [all...] |
H A D | x_long.c | 89 unsigned long utmp, sign; in long_i2c() local 102 utmp = 0 - (unsigned long)ltmp - 1; in long_i2c() 105 utmp = ltmp; in long_i2c() 107 clen = num_bits_ulong(utmp); in long_i2c() 121 cont[i] = (unsigned char)(utmp ^ sign); in long_i2c() 122 utmp >>= 8; in long_i2c() 133 unsigned long utmp = 0, sign = 0x100; in long_c2i() local 169 utmp = 0; in long_c2i() 171 utmp <<= 8; in long_c2i() 172 utmp | in long_c2i() [all...] |
/third_party/openssl/crypto/asn1/ |
H A D | x_int64.c | 52 uint64_t utmp; in uint64_i2c() local 58 memcpy(&utmp, cp, sizeof(utmp)); in uint64_i2c() 61 && utmp == 0) in uint64_i2c() 64 && (int64_t)utmp < 0) { in uint64_i2c() 66 utmp = 0 - utmp; in uint64_i2c() 70 return ossl_i2c_uint64_int(cont, utmp, neg); in uint64_i2c() 76 uint64_t utmp = 0; in uint64_c2i() local 94 if (!ossl_c2i_uint64_int(&utmp, in uint64_c2i() 147 uint32_t utmp; uint32_i2c() local 178 uint64_t utmp = 0; uint32_c2i() local [all...] |
H A D | x_long.c | 89 unsigned long utmp, sign; in long_i2c() local 102 utmp = 0 - (unsigned long)ltmp - 1; in long_i2c() 105 utmp = ltmp; in long_i2c() 107 clen = num_bits_ulong(utmp); in long_i2c() 121 cont[i] = (unsigned char)(utmp ^ sign); in long_i2c() 122 utmp >>= 8; in long_i2c() 133 unsigned long utmp = 0, sign = 0x100; in long_c2i() local 169 utmp = 0; in long_c2i() 171 utmp <<= 8; in long_c2i() 172 utmp | in long_c2i() [all...] |
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | utmp.h | 24 #define utmp utmpx macro 29 struct utmp *getutent(void); 30 struct utmp *getutid(const struct utmp *); 31 struct utmp *getutline(const struct utmp *); 32 struct utmp *pututline(const struct utmp *); 35 void updwtmp(const char *, const struct utmp *); 40 #define _PATH_UTMP "/dev/null/utmp" [all...] |
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | utmp.h | 24 #define utmp utmpx macro 29 struct utmp *getutent(void); 30 struct utmp *getutid(const struct utmp *); 31 struct utmp *getutline(const struct utmp *); 32 struct utmp *pututline(const struct utmp *); 35 void updwtmp(const char *, const struct utmp *); 40 #define _PATH_UTMP "/dev/null/utmp" [all...] |
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | utmp.h | 24 #define utmp utmpx macro 29 struct utmp *getutent(void); 30 struct utmp *getutid(const struct utmp *); 31 struct utmp *getutline(const struct utmp *); 32 struct utmp *pututline(const struct utmp *); 35 void updwtmp(const char *, const struct utmp *); 40 #define _PATH_UTMP "/dev/null/utmp" [all...] |
/third_party/musl/include/ |
H A D | utmp.h | 24 #define utmp utmpx macro 29 struct utmp *getutent(void); 30 struct utmp *getutid(const struct utmp *); 31 struct utmp *getutline(const struct utmp *); 32 struct utmp *pututline(const struct utmp *); 35 void updwtmp(const char *, const struct utmp *); 40 #define _PATH_UTMP "/dev/null/utmp" [all...] |
/third_party/toybox/toys/pending/ |
H A D | last.c | 24 #include <utmp.h> 59 struct utmp *ut = (struct utmp *)l->arg; in find_and_dlink() 89 struct utmp ut; in last_main() 145 struct utmp *u = (struct utmp *)l->arg; in last_main()
|
H A D | getty.c | 26 -H HOST Log HOST into the utmp file as the hostname 30 #include <utmp.h> 262 // Put hostname entry in utmp file 265 struct utmp entry; in utmp_entry() 266 struct utmp *utp_ptr; in utmp_entry() 268 char *utmperr = "can't make utmp entry, host length greater than UT_HOSTSIZE(256)"; in utmp_entry()
|
/third_party/libsnd/src/GSM610/ |
H A D | gsm610_priv.h | 133 { uint32_t utmp ; in GSM_L_ADD() local 136 { utmp = (uint32_t) - ((a) + 1) + (uint32_t) - ((b) + 1) ; in GSM_L_ADD() 137 return (utmp >= (uint32_t) MAX_LONGWORD) ? MIN_LONGWORD : - (int32_t) utmp - 2 ; in GSM_L_ADD() 141 { utmp = (uint32_t) a + (uint32_t) b ; in GSM_L_ADD() 142 return (utmp >= (uint32_t) MAX_LONGWORD) ? MAX_LONGWORD : utmp ; in GSM_L_ADD()
|
/third_party/musl/libc-test/src/functionalext/supplement/legacy/legacy_gtest/ |
H A D | legacy_endutent_test.cpp | 3 #include <utmp.h> 21 struct utmp* user; in HWTEST_F()
|
H A D | legacy_getutent_test.cpp | 2 #include <utmp.h>
|
H A D | legacy_utmpname_test.cpp | 3 #include <utmp.h>
|
/third_party/musl/libc-test/src/functionalext/supplement/misc/ |
H A D | login_tty.c | 17 #include <utmp.h>
|
/third_party/musl/src/misc/ |
H A D | login_tty.c | 1 #include <utmp.h>
|
H A D | forkpty.c | 2 #include <utmp.h>
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authnone_create/ |
H A D | rpc_authnone_create.c | 33 #include <utmp.h>
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_auth_destroy/ |
H A D | rpc_auth_destroy.c | 33 #include <utmp.h>
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create_default/ |
H A D | rpc_authunix_create_default.c | 33 #include <utmp.h>
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_regunreg_registerrpc/ |
H A D | rpc_registerrpc.c | 33 #include <utmp.h>
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create/ |
H A D | rpc_authunix_create.c | 33 #include <utmp.h>
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/ |
H A D | rpc_clnttcp_create.c | 34 #include <utmp.h>
|
H A D | rpc_clnttcp_create_stress.c | 34 #include <utmp.h>
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/ |
H A D | rpc_clntudp_bufcreate.c | 34 #include <utmp.h>
|