HomeSort by: relevance | last modified time | path
    Searched defs:tarindex (Results 1 - 6 of 6) sorted by relevancy

  /src/lib/libc/net/
base64.c 219 size_t tarindex; local in function:b64_pton
228 tarindex = 0;
244 if (tarindex >= targsize)
246 target[tarindex] = (u_char)(pos - Base64) << 2;
252 if (tarindex >= targsize)
254 target[tarindex] |=
257 if (tarindex + 1 < targsize)
258 target[tarindex + 1] = nextbyte;
262 tarindex++;
267 if (tarindex >= targsize
    [all...]
base64.c 219 size_t tarindex; local in function:b64_pton
228 tarindex = 0;
244 if (tarindex >= targsize)
246 target[tarindex] = (u_char)(pos - Base64) << 2;
252 if (tarindex >= targsize)
254 target[tarindex] |=
257 if (tarindex + 1 < targsize)
258 target[tarindex + 1] = nextbyte;
262 tarindex++;
267 if (tarindex >= targsize
    [all...]
  /src/common/lib/libprop/
prop_data.c 480 size_t tarindex, pos; local in function:_prop_data_internalize_decode
485 tarindex = 0;
509 if (tarindex >= targsize)
511 target[tarindex] = (uint8_t)(pos << 2);
518 if (tarindex + 1 >= targsize)
520 target[tarindex] |= (uint8_t)(pos >> 4);
521 target[tarindex + 1] = (pos & 0xf) << 4;
523 tarindex++;
529 if (tarindex + 1 >= targsize)
531 target[tarindex] |= (uint8_t)(pos >> 2)
    [all...]
prop_data.c 480 size_t tarindex, pos; local in function:_prop_data_internalize_decode
485 tarindex = 0;
509 if (tarindex >= targsize)
511 target[tarindex] = (uint8_t)(pos << 2);
518 if (tarindex + 1 >= targsize)
520 target[tarindex] |= (uint8_t)(pos >> 4);
521 target[tarindex + 1] = (pos & 0xf) << 4;
523 tarindex++;
529 if (tarindex + 1 >= targsize)
531 target[tarindex] |= (uint8_t)(pos >> 2)
    [all...]
prop_intern.c 326 if (tarindex >= targsize) { \
329 target[tarindex] = (x); \
331 tarindex++; \
481 size_t tarindex; local in function:_prop_json_intern_decode_string
485 tarindex = 0;
550 *sizep = tarindex;
569 size_t tarindex; local in function:_prop_xml_intern_decode_string
572 tarindex = 0;
625 *sizep = tarindex;
prop_intern.c 326 if (tarindex >= targsize) { \
329 target[tarindex] = (x); \
331 tarindex++; \
481 size_t tarindex; local in function:_prop_json_intern_decode_string
485 tarindex = 0;
550 *sizep = tarindex;
569 size_t tarindex; local in function:_prop_xml_intern_decode_string
572 tarindex = 0;
625 *sizep = tarindex;

Completed in 24 milliseconds