Home
last modified time | relevance | path

Searched refs:utmp (Results 1 - 25 of 44) sorted by relevance

12

/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dx_int64.c52 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 Dx_long.c89 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 Dx_int64.c52 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 Dx_long.c89 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 Dutmp.h24 #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 Dutmp.h24 #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 Dutmp.h24 #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 Dutmp.h24 #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 Dlast.c24 #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 Dgetty.c26 -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 Dgsm610_priv.h133 { 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 Dlegacy_endutent_test.cpp3 #include <utmp.h>
21 struct utmp* user; in HWTEST_F()
H A Dlegacy_getutent_test.cpp2 #include <utmp.h>
H A Dlegacy_utmpname_test.cpp3 #include <utmp.h>
/third_party/musl/libc-test/src/functionalext/supplement/misc/
H A Dlogin_tty.c17 #include <utmp.h>
/third_party/musl/src/misc/
H A Dlogin_tty.c1 #include <utmp.h>
H A Dforkpty.c2 #include <utmp.h>
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authnone_create/
H A Drpc_authnone_create.c33 #include <utmp.h>
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_auth_destroy/
H A Drpc_auth_destroy.c33 #include <utmp.h>
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create_default/
H A Drpc_authunix_create_default.c33 #include <utmp.h>
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_regunreg_registerrpc/
H A Drpc_registerrpc.c33 #include <utmp.h>
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create/
H A Drpc_authunix_create.c33 #include <utmp.h>
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/
H A Drpc_clnttcp_create.c34 #include <utmp.h>
H A Drpc_clnttcp_create_stress.c34 #include <utmp.h>
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/
H A Drpc_clntudp_bufcreate.c34 #include <utmp.h>

Completed in 13 milliseconds

12