/src/tests/kernel/ |
h_ps_strings2.c | 43 #define LEN 16384 54 if ((argv = calloc(LEN, sizeof(*argv))) == NULL) 56 for (i = 0; i < LEN; ++i) { 62 __ps_strings->ps_nargvstr = LEN;
|
/src/common/dist/zlib/contrib/infback9/ |
inflate9.h | 16 LEN, /* i: waiting for length/lit code */ 27 TYPE -> STORED or TABLE or LEN or DONE 29 TABLE -> LENLENS -> CODELENS -> LEN 31 LEN -> LEN or TYPE
|
/src/lib/libedit/ |
search.c | 231 #define LEN 2 235 #define LEN 0 244 for (cp = &el->el_search.patbuf[LEN]; 257 if (el->el_search.patlen >= EL_BUFSIZ - LEN) 280 if (el->el_search.patlen > LEN) 295 for (cp = &el->el_search.patbuf[LEN];; cp++) 302 el->el_search.patlen - LEN - 1; 309 EL_BUFSIZ - LEN) { 351 cp >= &el->el_search.patbuf[LEN]; 357 if (el->el_search.patlen > LEN && ch != L'[') [all...] |
/src/common/lib/libc/arch/aarch64/string/ |
bcopy.S | 38 * void *memcpy(void * restrict dst, const void * restrict src, size_t len); 44 #define LEN x2 49 * void *memmove(void *dst, const void *src, size_t len); 55 #define LEN x2 60 * void bcopy(const void *src, void *dst, size_t len); 66 #define LEN x2 97 add SRC0, SRC0, LEN 98 add DST, DST0, LEN 99 cmp LEN, #SMALLSIZE 102 cmp LEN, # [all...] |
/src/common/dist/zlib/examples/ |
zran.c | 331 off_t offset, unsigned char *buf, size_t len) { 337 if (len == 0 || offset < 0 || offset >= index->length) 371 size_t left = len; // number of bytes left to read after offset 381 strm.next_out = buf + len - left; 453 return ret == Z_OK || ret == Z_STREAM_END ? len - left : ret; 459 #define LEN 16384 // number of bytes to extract 462 // processing the file provided on the command line, and extracting LEN bytes 491 int len = deflate_index_build(in, SPAN, &index); local in function:main 492 if (len < 0) { 494 switch (len) { [all...] |
/src/common/dist/zlib/ |
inflate.h | 40 LEN_, /* i: same as LEN below, but only first time in */ 41 LEN, /* i: waiting for length/lit/eob code */ 71 LEN_ -> LEN 73 LEN -> LENEXT or LIT or TYPE 74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN 75 LIT -> LEN
|
/src/libexec/ld.elf_so/ |
rtld.c | 599 #define LEN(x) (sizeof(x) - 1) 607 } else if (strncmp(*env, debug_var, LEN(debug_var)) == 0) { 610 ld_debug = *env + LEN(debug_var); 614 } else if (strncmp(*env, bind_var, LEN(bind_var)) == 0) { 616 ld_bind_now = *env + LEN(bind_var); 619 } else if (strncmp(*env, path_var, LEN(path_var)) == 0) { 621 ld_library_path = *env + LEN(path_var); 624 } else if (strncmp(*env, preload_var, LEN(preload_var)) == 0) { 626 ld_preload = *env + LEN(preload_var); 632 #undef LEN [all...] |
/src/sys/dev/ic/ |
sl811hs.c | 139 #define LEN 1 217 #define SLHCI_FS_DATA_TIME(len) (((u_int)(len)<<3)+(len)+((len)>>1)) 218 #define SLHCI_LS_DATA_TIME(len) (((u_int)(len)<<6)+((u_int)(len)<<4)) 220 #define SLHCI_FS_DATA_TIME(len) (56*(len)/6 2033 unsigned int len = spipe->tregs[LEN]; local in function:slhci_abdone 3194 uint16_t len, value, index; local in function:slhci_roothub_ctrl 3372 int req, type, value, index, len; local in function:slhci_log_req [all...] |
/src/sys/net/ |
zlib.c | 239 # define zmemzero(dest, len) _fmemset(dest, 0, len) 243 # define zmemzero(dest, len) memset(dest, 0, len) 246 extern void zmemcpy(Bytef* dest, const Bytef* source, uInt len); 247 extern int zmemcmp(const Bytef* s1, const Bytef* s2, uInt len); 248 extern void zmemzero(Bytef* dest, uInt len); 273 uInt len); 343 ush len; /* length of bit string */ member in union:ct_data_s::__anon0201f153020a 350 #define Len dl.le 1027 unsigned len = s->pending; local in function:flush_pending 1292 unsigned len = strm->avail_in; local in function:read_buf 1356 int len; \/* length of current match *\/ local in function:longest_match 1497 register int len; \/* length of current match *\/ local in function:longest_match 2694 int len = tree[n].Len; local in function:gen_codes 5093 uInt len; member in struct:inflate_codes_state [all...] |