Searched refs:lc (Results 1 – 6 of 6) sorted by relevance
| /third_party/ulib/musl/src/prng/ |
| A D | __rand48_step.c | 5 uint64_t __rand48_step(unsigned short* xi, unsigned short* lc) { in __rand48_step() argument 8 a = lc[0] | (unsigned)lc[1] << 16 | (unsigned long long)lc[2] << 32; in __rand48_step() 9 x = a * x + lc[3]; in __rand48_step()
|
| A D | rand48_impl.h | 10 uint64_t __rand48_step(unsigned short* xi, unsigned short* lc) ATTR_LIBC_VISIBILITY;
|
| /third_party/ulib/linenoise/ |
| A D | example.c | 7 void completion(const char *buf, linenoiseCompletions *lc) { in completion() argument 9 linenoiseAddCompletion(lc,"hello"); in completion() 10 linenoiseAddCompletion(lc,"hello there"); in completion()
|
| A D | linenoise.c | 384 for (i = 0; i < lc->len; i++) 385 free(lc->cvec[i]); 386 if (lc->cvec != NULL) 387 free(lc->cvec); 401 completionCallback(ls->buf,&lc); 402 if (lc.len == 0) { 409 if (i < lc.len) { 450 freeCompletions(&lc); 482 cvec = realloc(lc->cvec,sizeof(char*)*(lc->len+1)); 487 lc->cvec = cvec; [all …]
|
| A D | README.markdown | 148 void completion(const char *buf, linenoiseCompletions *lc) { 150 linenoiseAddCompletion(lc,"hello"); 151 linenoiseAddCompletion(lc,"hello there");
|
| /third_party/ulib/musl/src/internal/ |
| A D | locale_impl.h | 28 #define LCTRANS(msg, lc, loc) __lctrans(msg, (loc)->cat[(lc)]) argument
|
Completed in 9 milliseconds