Searched refs:words (Results 1 – 4 of 4) sorted by relevance
/lib/ |
D | find_last_bit.c | 22 unsigned long words; in find_last_bit() local 26 words = size / BITS_PER_LONG; in find_last_bit() 30 tmp = (addr[words] & (~0UL >> (BITS_PER_LONG in find_last_bit() 36 while (words) { in find_last_bit() 37 tmp = addr[--words]; in find_last_bit() 40 return words * BITS_PER_LONG + __fls(tmp); in find_last_bit()
|
D | dynamic_debug.c | 213 static int ddebug_tokenize(char *buf, char *words[], int maxwords) in ddebug_tokenize() argument 249 words[nwords++] = buf; in ddebug_tokenize() 257 pr_cont(" \"%s\"", words[i]); in ddebug_tokenize() 311 static int ddebug_parse_query(char *words[], int nwords, in ddebug_parse_query() argument 329 if (!strcmp(words[i], "func")) { in ddebug_parse_query() 330 rc = check_set(&query->function, words[i+1], "func"); in ddebug_parse_query() 331 } else if (!strcmp(words[i], "file")) { in ddebug_parse_query() 332 rc = check_set(&query->filename, words[i+1], "file"); in ddebug_parse_query() 333 } else if (!strcmp(words[i], "module")) { in ddebug_parse_query() 334 rc = check_set(&query->module, words[i+1], "module"); in ddebug_parse_query() [all …]
|
D | string.c | 903 unsigned int words, prefix; in memchr_inv() local 932 words = bytes / 8; in memchr_inv() 934 while (words) { in memchr_inv() 938 words--; in memchr_inv()
|
D | bch.c | 1252 unsigned int i, words; in init_bch() local 1297 words = DIV_ROUND_UP(m*t, 32); in init_bch() 1301 bch->mod8_tab = bch_alloc(words*1024*sizeof(*bch->mod8_tab), &err); in init_bch() 1302 bch->ecc_buf = bch_alloc(words*sizeof(*bch->ecc_buf), &err); in init_bch() 1303 bch->ecc_buf2 = bch_alloc(words*sizeof(*bch->ecc_buf2), &err); in init_bch()
|