OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TEMPCHARS
(Results
1 - 2
of
2
) sorted by null
/external/openssh/openbsd-compat/
mktemp.c
43
#define
TEMPCHARS
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
44
#define NUM_CHARS (sizeof(
TEMPCHARS
) - 1)
50
const char *
tempchars
=
TEMPCHARS
;
local
73
*cp =
tempchars
[r];
/bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c
34
#define
TEMPCHARS
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
35
#define NUM_CHARS (sizeof(
TEMPCHARS
) - 1)
48
const char
tempchars
[] =
TEMPCHARS
;
local
87
*cp++ =
tempchars
[rbuf[i] % NUM_CHARS];
Completed in 107 milliseconds