Searched refs:argbuf (Results 1 - 9 of 9) sorted by relevance

/external/python/cpython3/Include/
H A Dpystrhex.h9 /* Returns a str() containing the hex representation of argbuf. */
10 PyAPI_FUNC(PyObject*) _Py_strhex(const char* argbuf, const Py_ssize_t arglen);
11 /* Returns a bytes() containing the ASCII hex representation of argbuf. */
12 PyAPI_FUNC(PyObject*) _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen);
/external/python/cpython3/Python/
H A Dpystrhex.c5 static PyObject *_Py_strhex_impl(const char* argbuf, const Py_ssize_t arglen, argument
32 c = (argbuf[i] >> 4) & 0xf;
34 c = argbuf[i] & 0xf;
51 PyAPI_FUNC(PyObject *) _Py_strhex(const char* argbuf, const Py_ssize_t arglen) argument
53 return _Py_strhex_impl(argbuf, arglen, 0);
58 PyAPI_FUNC(PyObject *) _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen) argument
60 return _Py_strhex_impl(argbuf, arglen, 1);
/external/iproute2/misc/
H A Dssfilter.y195 static char argbuf[1024];
196 static char *tokptr = argbuf;
208 if (fgets(argbuf, sizeof(argbuf)-1, yy_fp) == NULL)
210 argbuf[sizeof(argbuf)-1] = 0;
211 if (strlen(argbuf) == sizeof(argbuf) - 1) {
215 if (argbuf[strlen(argbuf)
[all...]
/external/valgrind/coregrind/
H A Dm_syscall.c1011 ULong argbuf[6];
1013 argbuf[0] = a1;
1014 argbuf[1] = a2;
1015 argbuf[2] = a3;
1016 argbuf[3] = a4;
1017 argbuf[4] = a5;
1018 argbuf[5] = a6;
1019 val = do_syscall_WRK(sysno,(UWord)&argbuf[0],0,0,0,0,0);
/external/python/cpython2/Modules/
H A Dbinascii.c1043 char* argbuf; local
1051 argbuf = parg.buf;
1070 c = (argbuf[i] >> 4) & 0xf;
1073 c = argbuf[i] & 0xf;
1106 char* argbuf; local
1114 argbuf = parg.buf;
1137 int top = to_int(Py_CHARMASK(argbuf[i]));
1138 int bot = to_int(Py_CHARMASK(argbuf[i+1]));
/external/python/cpython3/Modules/
H A Dbinascii.c1155 const char* argbuf; local
1161 argbuf = hexstr->buf;
1181 int top = to_int(Py_CHARMASK(argbuf[i]));
1182 int bot = to_int(Py_CHARMASK(argbuf[i+1]));
/external/python/cpython3/Objects/
H A Dbytearrayobject.c2007 char* argbuf = PyByteArray_AS_STRING(self); local
2009 return _Py_strhex(argbuf, arglen);
H A Dbytesobject.c2425 char* argbuf = PyBytes_AS_STRING(self); local
2427 return _Py_strhex(argbuf, arglen);
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...

Completed in 802 milliseconds