OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tarindex
(Results
1 - 4
of
4
) sorted by null
/bionic/libc/upstream-openbsd/lib/libc/net/
base64.c
195
int
tarindex
, state, ch;
local
200
tarindex
= 0;
216
if (
tarindex
>= targsize)
218
target[
tarindex
] = (pos - Base64) << 2;
224
if (
tarindex
>= targsize)
226
target[
tarindex
] |= (pos - Base64) >> 4;
228
if (
tarindex
+ 1 < targsize)
229
target[
tarindex
+1] = nextbyte;
233
tarindex
++;
238
if (
tarindex
>= targsize
[
all
...]
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
base64.c
241
int
tarindex
, state, ch;
local
245
tarindex
= 0;
261
if ((size_t)
tarindex
>= targsize)
263
target[
tarindex
] = (u_char)((pos - Base64) << 2);
269
if ((size_t)
tarindex
+ 1 >= targsize)
271
target[
tarindex
] |= (u_char)((pos - Base64) >> 4);
272
target[
tarindex
+1] = (u_char)(((pos - Base64) & 0x0f)
275
tarindex
++;
280
if ((size_t)
tarindex
+ 1 >= targsize)
282
target[
tarindex
] |= (u_char)((pos - Base64) >> 2);
[
all
...]
/external/openssh/openbsd-compat/
base64.c
199
u_int
tarindex
, state;
local
204
tarindex
= 0;
220
if (
tarindex
>= targsize)
222
target[
tarindex
] = (pos - Base64) << 2;
228
if (
tarindex
+ 1 >= targsize)
230
target[
tarindex
] |= (pos - Base64) >> 4;
231
target[
tarindex
+1] = ((pos - Base64) & 0x0f)
234
tarindex
++;
239
if (
tarindex
+ 1 >= targsize)
241
target[
tarindex
] |= (pos - Base64) >> 2
[
all
...]
/external/mdnsresponder/mDNSCore/
DNSDigest.c
1163
int
tarindex
, state, ch;
local
[
all
...]
Completed in 772 milliseconds