HomeSort by relevance Sort by last modified time
    Searched refs:rpos (Results 1 - 25 of 38) sorted by null

1 2

  /prebuilts/ndk/r11/sources/android/support/src/wcstox/
shgetc.c 7 f->rpos = wcs;
13 if (f->rpos >= f->rend) {
17 wchar_t wc = *f->rpos++;
25 } else if (f->rpos > f->rstart) {
26 f->rpos--;
31 int off = f->rpos - f->rstart;
33 f->rpos = f->rstart + lim;
38 return (off_t)(f->rpos - f->rstart);
shgetc.h 11 // |rpos| is the current reading position.
17 const wchar_t *rstart, *rpos, *rend; member in struct:fake_file_t
  /prebuilts/ndk/r13/sources/android/support/src/wcstox/
shgetc.c 7 f->rpos = wcs;
13 if (f->rpos >= f->rend) {
17 wchar_t wc = *f->rpos++;
25 } else if (f->rpos > f->rstart) {
26 f->rpos--;
31 int off = f->rpos - f->rstart;
33 f->rpos = f->rstart + lim;
38 return (off_t)(f->rpos - f->rstart);
shgetc.h 11 // |rpos| is the current reading position.
17 const wchar_t *rstart, *rpos, *rend; member in struct:fake_file_t
  /external/libmicrohttpd/src/microhttpd/
internal.c 134 char *rpos = val; local
140 while ('\0' != *rpos)
142 switch (*rpos)
145 if ( ('\0' == rpos[1]) ||
146 ('\0' == rpos[2]) )
151 buf3[0] = rpos[1];
152 buf3[1] = rpos[2];
159 rpos += 3;
164 *wpos = *rpos;
166 rpos++
    [all...]
  /external/wpa_supplicant_8/hostapd/
hlr_auc_gw.c 593 char *rpos, *rend; local
609 rpos = resp;
610 ret = snprintf(rpos, rend - rpos, "SIM-RESP-AUTH %s", imsi);
611 if (ret < 0 || ret >= rend - rpos)
613 rpos += ret;
622 *rpos++ = ' ';
623 rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8)
665 char *pos, *rpos, *rend; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_md5.c 35 u8 *rpos, id; local
88 rpos = wpabuf_put(resp, CHAP_MD5_LEN);
90 rpos)) {
96 wpa_hexdump(MSG_MSGDUMP, "EAP-MD5: Response", rpos, CHAP_MD5_LEN);
eap_pax.c 123 u8 *rpos; local
207 rpos = wpabuf_put(resp, EAP_PAX_MAC_LEN);
211 (u8 *) data->cid, data->cid_len, rpos);
213 rpos, EAP_PAX_MAC_LEN);
217 rpos = wpabuf_put(resp, EAP_PAX_ICV_LEN);
220 NULL, 0, NULL, 0, rpos);
221 wpa_hexdump(MSG_MSGDUMP, "EAP-PAX: ICV", rpos, EAP_PAX_ICV_LEN);
238 u8 *rpos, mac[EAP_PAX_MAC_LEN]; local
315 rpos = wpabuf_put(resp, EAP_PAX_ICV_LEN);
318 NULL, 0, NULL, 0, rpos) < 0)
    [all...]
eap_leap.c 66 u8 challenge_len, *rpos; local
117 rpos = wpabuf_put(resp, LEAP_RESPONSE_LEN);
119 challenge_response(challenge, password, rpos);
121 nt_challenge_response(challenge, password, password_len, rpos);
122 os_memcpy(data->peer_response, rpos, LEAP_RESPONSE_LEN);
124 rpos, LEAP_RESPONSE_LEN);
eap_sake.c 193 u8 *rpos; local
266 rpos = wpabuf_put(resp, EAP_SAKE_MIC_LEN);
270 wpabuf_head(resp), wpabuf_len(resp), rpos,
271 rpos)) {
294 u8 *rpos; local
348 rpos = wpabuf_put(resp, EAP_SAKE_MIC_LEN);
352 wpabuf_head(resp), wpabuf_len(resp), rpos,
353 rpos)) {
eap_gpsk.c 322 u8 *rpos, *start; local
399 rpos = wpabuf_put(resp, miclen);
401 data->specifier, start, rpos - start, rpos) <
634 u8 *rpos, *start; local
652 rpos = wpabuf_put(resp, mlen);
654 data->specifier, start, rpos - start, rpos) <
eap_tnc.c 208 u8 *rpos, *rpos1; local
390 rpos = tncc_copy_send_buf(data->tncc, rpos1);
391 wpabuf_put(resp, rpos - rpos1);
  /external/llvm/utils/
wciia.py 88 rpos = -1
90 rpos = path.find(fpath)
91 if rpos == 0:
  /external/wpa_supplicant_8/src/common/
wpa_common.c 1569 u8 *start, *end, *rpos, *rend; local
    [all...]
  /external/libcups/cups/
testipp.c 37 size_t rpos, /* Read position */ member in struct:_ippdata_t
372 data.rpos = 0;
383 printf("FAIL - %d bytes read.\n", (int)data.rpos);
386 else if (data.rpos != data.wused)
388 printf("FAIL - read %d bytes, expected %d bytes!\n", (int)data.rpos,
600 data.rpos = 0;
614 printf("FAIL - %d bytes read.\n", (int)data.rpos);
617 else if (data.rpos != sizeof(mixed))
619 printf("FAIL - read %d bytes, expected %d bytes!\n", (int)data.rpos,
1007 if ((count = data->wsize - data->rpos) > bytes
    [all...]
  /external/syslinux/com32/mboot/
initvesa.c 141 (mi->memory_layout == 6 && mi->rpos == 16 && mi->gpos == 8 &&
146 (mi->memory_layout == 6 && mi->rpos == 16 && mi->gpos == 8 &&
151 (mi->memory_layout == 6 && mi->rpos == 11 && mi->gpos == 5 &&
156 (mi->memory_layout == 6 && mi->rpos == 10 && mi->gpos == 5 &&
vesa.h 77 uint8_t rpos; member in struct:vesa_mode_info
  /external/syslinux/efi/
vesa.c 162 mi->rpos = 0;
178 mi->rpos = 16;
194 &mi->rpos, &lfb_rsize);
204 dprintf("RPos %d Rsize %d GPos %d Gsize %d\n", mi->rpos, lfb_rsize, mi->gpos, lfb_gsize);
  /external/syslinux/com32/lib/sys/vesa/
vesa.h 78 uint8_t rpos; member in struct:vesa_mode_info
  /external/syslinux/com32/modules/
vesainfo.c 54 "Mode attrib h_res v_res bpp layout rpos gpos bpos\n",
80 mi->memory_layout, mi->rpos, mi->gpos, mi->bpos);
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 623 const u8 *rpos, *start; local
628 rpos = ric;
629 while (rpos + sizeof(*rdie) < ric + ric_len) {
630 if (rpos[0] != WLAN_EID_RIC_DATA || rpos[1] < sizeof(*rdie) ||
631 rpos + 2 + rpos[1] > ric + ric_len)
633 rdie = (const struct rsn_rdie *) (rpos + 2);
634 rpos += 2 + rpos[1]
    [all...]
fils_hlp.c 164 const u8 *rpos; local
290 rpos = wpabuf_head(resp);
304 wpabuf_put_data(sta->fils_hlp_resp, rpos, len - 1);
305 rpos += len - 1;
311 wpabuf_put_data(sta->fils_hlp_resp, rpos, len);
312 rpos += len;
  /external/freetype/src/base/
ftrfork.c 196 FT_Long tag_internal, rpos; local
212 /* `rpos' is a signed 16bit integer offset to resource records; the */
235 FT_READ_SHORT( rpos ) )
244 subcnt, rpos ));
249 rpos += map_offset;
256 error = FT_Stream_Seek( stream, (FT_ULong)rpos );
  /external/pdfium/third_party/freetype/src/base/
ftrfork.c 172 FT_Long tag_internal, rpos; local
192 FT_READ_USHORT( rpos ) )
201 subcnt, rpos ));
206 rpos += map_offset;
208 error = FT_Stream_Seek( stream, (FT_ULong)rpos );
  /external/syslinux/core/
bios.c 286 mi->rpos, mi->gpos, mi->bpos);
328 (mi->memory_layout == 6 && mi->rpos == 16 && mi->gpos == 8 &&
333 (mi->memory_layout == 6 && mi->rpos == 16 && mi->gpos == 8 &&
338 (mi->memory_layout == 6 && mi->rpos == 11 && mi->gpos == 5 &&
343 (mi->memory_layout == 6 && mi->rpos == 10 && mi->gpos == 5 &&

Completed in 1340 milliseconds

1 2