Home
last modified time | relevance | path

Searched refs:lc (Results 1 – 6 of 6) sorted by relevance

/third_party/ulib/musl/src/prng/
A D__rand48_step.c5 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 Drand48_impl.h10 uint64_t __rand48_step(unsigned short* xi, unsigned short* lc) ATTR_LIBC_VISIBILITY;
/third_party/ulib/linenoise/
A Dexample.c7 void completion(const char *buf, linenoiseCompletions *lc) { in completion() argument
9 linenoiseAddCompletion(lc,"hello"); in completion()
10 linenoiseAddCompletion(lc,"hello there"); in completion()
A Dlinenoise.c384 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 DREADME.markdown148 void completion(const char *buf, linenoiseCompletions *lc) {
150 linenoiseAddCompletion(lc,"hello");
151 linenoiseAddCompletion(lc,"hello there");
/third_party/ulib/musl/src/internal/
A Dlocale_impl.h28 #define LCTRANS(msg, lc, loc) __lctrans(msg, (loc)->cat[(lc)]) argument

Completed in 9 milliseconds