Home
last modified time | relevance | path

Searched defs:n (Results 1 – 25 of 153) sorted by relevance

1234567

/lib/lwip/lwip/src/include/lwip/
A Dnetifapi.h87 #define netifapi_netif_remove(n) netifapi_netif_common(n, netif_remove, NULL) argument
91 #define netifapi_netif_set_up(n) netifapi_netif_common(n, netif_set_up, NULL) argument
95 #define netifapi_netif_set_down(n) netifapi_netif_common(n, netif_set_down, NULL) argument
99 #define netifapi_netif_set_default(n) netifapi_netif_common(n, netif_set_default, NULL) argument
117 #define netifapi_dhcp_start(n) netifapi_netif_common(n, NULL, dhcp_start) argument
122 #define netifapi_dhcp_stop(n) netifapi_netif_common(n, dhcp_stop, NULL) argument
126 #define netifapi_dhcp_inform(n) netifapi_netif_common(n, dhcp_inform, NULL) argument
130 #define netifapi_dhcp_renew(n) netifapi_netif_common(n, NULL, dhcp_renew) argument
135 #define netifapi_dhcp_release(n) netifapi_netif_common(n, NULL, dhcp_release) argument
149 #define netifapi_autoip_start(n) netifapi_netif_common(n, NULL, autoip_start) argument
[all …]
/lib/efi_loader/
A Defi_freestanding.c23 int memcmp(const void *s1, const void *s2, size_t n) in memcmp()
45 void *memmove(void *dest, const void *src, size_t n) in memmove()
70 void *memcpy(void *dest, const void *src, size_t n) in memcpy()
83 void *memset(void *s, int c, size_t n) in memset()
A Defi_device_path_to_text.c66 int i, n; in dp_hardware() local
163 int i, n = sizeof(struct efi_mac_addr); in dp_msging() local
241 int n; in dp_msging() local
322 int i, n; in dp_media() local
/lib/lwip/lwip/src/core/
A Ddef.c76 lwip_htons(u16_t n) in lwip_htons()
90 lwip_htonl(u32_t n) in lwip_htonl()
105 lwip_strnstr(const char *buffer, const char *token, size_t n) in lwip_strnstr()
128 lwip_strnistr(const char *buffer, const char *token, size_t n) in lwip_strnistr()
226 int n = (number >= 0) ? number : -number; in lwip_itoa() local
/lib/zstd/common/
A Dzstd_deps.h32 #define ZSTD_memcpy(d,s,n) __builtin_memcpy((d),(s),(n)) argument
33 #define ZSTD_memmove(d,s,n) __builtin_memmove((d),(s),(n)) argument
34 #define ZSTD_memset(d,s,n) __builtin_memset((d),(s),(n)) argument
52 #define ZSTD_calloc(n,s) ({ (void)(n); (void)(s); NULL; }) argument
A Dcpu.h38 U32 n; in ZSTD_cpuid() local
66 U32 n; in ZSTD_cpuid() local
/lib/mbedtls/external/mbedtls/library/
A Dpsa_crypto_core_common.h30 unsigned char *p, size_t n) in psa_crypto_buffer_offset()
47 const unsigned char *p, size_t n) in psa_crypto_buffer_offset_const()
A Dplatform.c25 static void *platform_calloc_uninit(size_t n, size_t size) in platform_calloc_uninit()
70 int mbedtls_platform_win32_snprintf(char *s, size_t n, const char *fmt, ...) in mbedtls_platform_win32_snprintf()
88 static int platform_snprintf_uninit(char *s, size_t n, in platform_snprintf_uninit()
104 int mbedtls_platform_set_snprintf(int (*snprintf_func)(char *s, size_t n, in mbedtls_platform_set_snprintf()
115 int mbedtls_platform_win32_vsnprintf(char *s, size_t n, const char *fmt, va_list arg) in mbedtls_platform_win32_vsnprintf()
143 static int platform_vsnprintf_uninit(char *s, size_t n, in platform_vsnprintf_uninit()
160 int mbedtls_platform_set_vsnprintf(int (*vsnprintf_func)(char *s, size_t n, in mbedtls_platform_set_vsnprintf()
296 size_t n; in mbedtls_platform_std_nv_seed_read() local
318 size_t n; in mbedtls_platform_std_nv_seed_write() local
A Dcamellia.c59 #define SBOX1(n) FSb[(n)] argument
60 #define SBOX2(n) (unsigned char) ((FSb[(n)] >> 7 ^ FSb[(n)] << 1) & 0xff) argument
61 #define SBOX3(n) (unsigned char) ((FSb[(n)] >> 1 ^ FSb[(n)] << 7) & 0xff) argument
62 #define SBOX4(n) FSb[((n) << 1 ^ (n) >> 7) &0xff] argument
146 #define SBOX1(n) FSb[(n)] argument
147 #define SBOX2(n) FSb2[(n)] argument
148 #define SBOX3(n) FSb3[(n)] argument
149 #define SBOX4(n) FSb4[(n)] argument
578 size_t n; in mbedtls_camellia_crypt_cfb128() local
631 size_t n; in mbedtls_camellia_crypt_ctr() local
A Dalignment.h427 #define MBEDTLS_PUT_UINT32_BE(n, data, offset) \ argument
464 #define MBEDTLS_PUT_UINT32_LE(n, data, offset) \ argument
500 #define MBEDTLS_PUT_UINT16_LE(n, data, offset) \ argument
536 #define MBEDTLS_PUT_UINT16_BE(n, data, offset) \ argument
573 #define MBEDTLS_PUT_UINT24_BE(n, data, offset) \ argument
605 #define MBEDTLS_PUT_UINT24_LE(n, data, offset) \ argument
636 #define MBEDTLS_PUT_UINT64_BE(n, data, offset) \ argument
672 #define MBEDTLS_PUT_UINT64_LE(n, data, offset) \ argument
A Dcommon.h139 unsigned char *p, size_t n) in mbedtls_buffer_offset()
156 const unsigned char *p, size_t n) in mbedtls_buffer_offset_const()
189 size_t n) in mbedtls_xor()
271 size_t n) in mbedtls_xor_no_simd()
A Dnet_sockets.c207 int n, ret; in mbedtls_net_bind() local
329 socklen_t n = (socklen_t) sizeof(client_addr); in mbedtls_net_accept() local
332 int n = (int) sizeof(client_addr); in mbedtls_net_accept() local
431 u_long n = 0; in mbedtls_net_set_block() local
442 u_long n = 1; in mbedtls_net_set_nonblock() local
A Dpsa_its_file.c80 size_t n; in psa_its_read_file() local
127 size_t n; in psa_its_get() local
188 size_t n; in psa_its_set() local
A Dbase64.c64 size_t i, n; in mbedtls_base64_encode() local
132 size_t n; /* number of digits or trailing = in source */ in mbedtls_base64_decode() local
A Dconstant_time.c70 size_t n) in mbedtls_ct_memcmp()
123 size_t n, in mbedtls_ct_memcmp_partial()
159 for (size_t n = 0; n < total - 1; n++) { in mbedtls_ct_memmove_left() local
/lib/libavb/
A Davb_sysdeps_posix.c13 int avb_memcmp(const void* src1, const void* src2, size_t n) { in avb_memcmp()
17 void* avb_memcpy(void* dest, const void* src, size_t n) { in avb_memcpy()
21 void* avb_memset(void* dest, const int c, size_t n) { in avb_memset()
29 int avb_strncmp(const char* s1, const char* s2, size_t n) { in avb_strncmp()
A Davb_util.c66 int avb_safe_memcmp(const void* s1, const void* s2, size_t n) { in avb_safe_memcmp()
112 size_t n; in avb_validate_utf8() local
212 size_t n, m; in avb_strstr() local
239 size_t n; in avb_strv_find_str() local
332 size_t num_strings, n; in avb_strdupv() local
374 int64_t n; in avb_basename() local
400 size_t n; in avb_bin2hex() local
A Davb_cmdline.c30 size_t n; in avb_sub_cmdline() local
160 size_t n, num_digits; in uint64_to_base10() local
277 size_t n, total_size = 0; in avb_append_options() local
300 size_t n, total_size = 0; in avb_append_options() local
/lib/
A Ddiv64.c34 uint32_t __attribute__((weak, no_instrument_function)) __div64_32(u64 *n, in __div64_32()
112 int n = 1 + fls(high); in div64_u64_rem() local
150 int n = 1 + fls(high); in div64_u64() local
A Dphysmem.c17 phys_addr_t __weak arch_phys_memset(phys_addr_t s, int c, phys_size_t n) in arch_phys_memset()
A Dsha256.c26 #define GET_UINT32_BE(n,b,i) { \ argument
34 #define PUT_UINT32_BE(n,b,i) { \ argument
80 #define SHR(x,n) ((x & 0xFFFFFFFF) >> n) in sha256_process_one() argument
81 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n))) in sha256_process_one() argument
/lib/zlib/
A Dtrees.c243 int n; /* iterates over tree elements */ in tr_static_init() local
418 int n; /* iterates over tree elements */ local
448 #define smaller(tree, n, m, depth) \ argument
504 int n, m; /* iterate over the tree elements */ local
588 int n; /* code index */ local
629 int n, m; /* iterate over heap elements */ local
715 int n; /* iterates over all tree elements */ local
760 int n; /* iterates over all tree elements */ local
1122 int n; local
A Dinflate.c217 #define NEEDBITS(n) \ argument
224 #define BITS(n) \ argument
228 #define DROPBITS(n) \ argument
/lib/lwip/lwip/src/netif/ppp/polarssl/
A Dmd5.c52 #define GET_ULONG_LE(n,b,i) \ argument
62 #define PUT_ULONG_LE(n,b,i) \ argument
106 #define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n))) in md5_process() argument
A Dmd4.c53 #define GET_ULONG_LE(n,b,i) \ argument
63 #define PUT_ULONG_LE(n,b,i) \ argument
107 #define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n))) in md4_process() argument

Completed in 46 milliseconds

1234567