Searched refs:retbuf (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Python/ |
H A D | pystrhex.c | 66 Py_UCS1 *retbuf; in _Py_strhex_impl() local 73 retbuf = (Py_UCS1 *)PyBytes_AS_STRING(retval); in _Py_strhex_impl() 80 retbuf = PyUnicode_1BYTE_DATA(retval); in _Py_strhex_impl() 91 retbuf[j++] = Py_hexdigits[c >> 4]; in _Py_strhex_impl() 92 retbuf[j++] = Py_hexdigits[c & 0x0f]; in _Py_strhex_impl() 107 retbuf[j++] = Py_hexdigits[c >> 4]; in _Py_strhex_impl() 108 retbuf[j++] = Py_hexdigits[c & 0x0f]; in _Py_strhex_impl() 110 retbuf[j++] = sep_char; in _Py_strhex_impl() 114 retbuf[j++] = Py_hexdigits[c >> 4]; in _Py_strhex_impl() 115 retbuf[ in _Py_strhex_impl() [all...] |
/third_party/ltp/testcases/kernel/mem/vma/ |
H A D | vma04.c | 61 static char retbuf[BUFSIZ]; variable 76 static void get_vmas(char *retbuf, void *addr_s, void *addr_e); 145 memset(retbuf, 0, sizeof(retbuf)); in fin() 196 static void get_vmas(char *retbuf, void *addr_s, void *addr_e) in get_vmas() argument 203 retbuf[0] = '\0'; in get_vmas() 218 strncat(retbuf, tmpstr, 32); in get_vmas() 236 get_vmas(retbuf, mmap_addr, mmap_addr + pagesize * 6); in case4() 237 assertion("2,4", retbuf, "case4"); in case4() 253 get_vmas(retbuf, mmap_add in case5() [all...] |
/third_party/ltp/testcases/kernel/syscalls/dup/ |
H A D | dup07.c | 49 struct stat retbuf; in main() local 68 fstat(rdoret, &retbuf); in main() 70 if (retbuf.st_mode != dupbuf.st_mode) { in main() 90 fstat(wroret, &retbuf); in main() 92 if (retbuf.st_mode != dupbuf.st_mode) { in main() 113 fstat(rdwret, &retbuf); in main() 115 if (retbuf.st_mode != dupbuf.st_mode) { in main()
|
/third_party/python/Modules/ |
H A D | binascii.c | 885 char* retbuf; in binascii_a2b_hex_impl() local 910 retbuf = PyBytes_AS_STRING(retval); in binascii_a2b_hex_impl() 924 retbuf[j++] = (top << 4) + bot; in binascii_a2b_hex_impl()
|
/third_party/node/src/ |
H A D | node_i18n.cc | 114 SPREAD_BUFFER_ARG(ret.ToLocalChecked(), retbuf); in ToBufferEndian()
|
Completed in 4 milliseconds