Home
last modified time | relevance | path

Searched refs:spos (Results 1 – 10 of 10) sorted by relevance

/external/wpa_supplicant/
Ddriver_wext.c352 char *spos; in wpa_driver_wext_event_wireless_custom() local
355 spos = custom + 17; in wpa_driver_wext_event_wireless_custom()
357 bytes = strspn(spos, "0123456789abcdefABCDEF"); in wpa_driver_wext_event_wireless_custom()
367 hexstr2bin(spos, data.assoc_info.req_ies, bytes); in wpa_driver_wext_event_wireless_custom()
369 spos += bytes * 2; in wpa_driver_wext_event_wireless_custom()
374 if (os_strncmp(spos, " RespIEs=", 9) == 0) { in wpa_driver_wext_event_wireless_custom()
375 spos += 9; in wpa_driver_wext_event_wireless_custom()
377 bytes = strspn(spos, "0123456789abcdefABCDEF"); in wpa_driver_wext_event_wireless_custom()
387 hexstr2bin(spos, data.assoc_info.resp_ies, bytes); in wpa_driver_wext_event_wireless_custom()
1439 char *spos; in wpa_driver_wext_get_scan_results() local
[all …]
/external/qemu/android/skin/
Dcomposer.c352 v->spos.x = sx; in skin_viewport()
353 v->spos.y = sy; in skin_viewport()
377 skin_region_translate(r, -v->spos.x, -v->spos.y); in skin_viewport_invalidate()
Dcomposer.h93 SkinPos spos; member
/external/dropbear/libtommath/mtest/
Dmpi.c2374 unsigned char *spos; in mp_to_unsigned_bin() local
2380 spos = str; in mp_to_unsigned_bin()
2394 *spos = d & UCHAR_MAX; in mp_to_unsigned_bin()
2396 ++spos; in mp_to_unsigned_bin()
2405 *spos = d & UCHAR_MAX; in mp_to_unsigned_bin()
2407 ++spos; in mp_to_unsigned_bin()
2411 while(--spos > str) { in mp_to_unsigned_bin()
2413 *str = *spos; in mp_to_unsigned_bin()
2414 *spos = t; in mp_to_unsigned_bin()
/external/webkit/JavaScriptCore/runtime/
DStringPrototype.cpp541 int spos = ovector[si * 2]; in stringProtoFuncSplit() local
542 if (spos < 0) in stringProtoFuncSplit()
545 result->put(exec, i++, jsSubstring(exec, s, spos, ovector[si * 2 + 1] - spos)); in stringProtoFuncSplit()
/external/qemu/
Dblock-vvfat.c359 static int sector2CHS(BlockDriverState* bs, mbr_chs_t * chs, int spos){ in sector2CHS() argument
361 sector = spos % (bs->secs); spos/= bs->secs; in sector2CHS()
362 head = spos % (bs->heads); spos/= bs->heads; in sector2CHS()
363 if(spos >= bs->cyls){ in sector2CHS()
373 chs->sector = (uint8_t)( (sector+1) | ((spos>>8)<<6) ); in sector2CHS()
374 chs->cylinder = (uint8_t)spos; in sector2CHS()
/external/iptables/libiptc/
Dlibiptc.c1140 int spos; in TC_GET_TARGET() local
1149 spos = *(int *)GET_TARGET(e)->data; in TC_GET_TARGET()
1150 DEBUGP("r=%p, spos=%d'\n", r, spos); in TC_GET_TARGET()
1151 return standard_target_map(spos); in TC_GET_TARGET()
/external/webkit/WebCore/rendering/
DRenderObject.h733 virtual void selectionStartEnd(int& spos, int& epos) const;
DRenderObject.cpp1956 void RenderObject::selectionStartEnd(int& spos, int& epos) const in selectionStartEnd() argument
1958 view()->selectionStartEnd(spos, epos); in selectionStartEnd()
/external/yaffs2/yaffs2/
Dyaffs_fs.c638 unsigned spos = pos; in yaffs_commit_write() local
643 spos, nBytes)); in yaffs_commit_write()