Home
last modified time | relevance | path

Searched refs:llp (Results 1 – 5 of 5) sorted by relevance

/glibc-2.36/sunrpc/
Dxdr.c247 xdr_hyper (XDR *xdrs, quad_t *llp) in libc_hidden_def()
253 t1 = (long) ((*llp) >> 32); in libc_hidden_def()
254 t2 = (long) (*llp); in libc_hidden_def()
262 *llp = ((quad_t) t1) << 32; in libc_hidden_def()
263 *llp |= (uint32_t) t2; in libc_hidden_def()
315 xdr_longlong_t (XDR *xdrs, quad_t *llp) in libc_hidden_def()
317 return xdr_hyper (xdrs, llp); in libc_hidden_def()
/glibc-2.36/elf/
Ddl-load.c703 _dl_init_paths (const char *llp, const char *source, in _dl_init_paths() argument
825 if (llp != NULL && *llp != '\0') in _dl_init_paths()
827 char *llp_tmp = strdupa (llp); in _dl_init_paths()
/glibc-2.36/posix/
Dtst-regex.input8812 replacing local variable llp. If llp is NULL examine LD_LIBRARY_PATH
/glibc-2.36/ChangeLog.old/
DChangeLog.88812 replacing local variable llp. If llp is NULL examine LD_LIBRARY_PATH
DChangeLog.1113306 * sunrpc/xdr.c (xdr_hyper): Correctly handle lower half of llp.