Searched defs:encoded (Results 1 - 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
H A D_codecs_iso2022.c160 DBCHAR encoded; local
183 encoded = MAP_UNMAPPABLE;
186 encoded = dsg->encoder(&c, &length);
187 if (encoded == MAP_MULTIPLE_AVAIL) {
202 encoded = dsg->encoder(u4in, &length);
204 encoded = dsg->encoder(&c, &length);
206 encoded = dsg->encoder(&c, &length);
208 if (encoded != MAP_UNMAPPABLE) {
213 else if (encoded != MAP_UNMAPPABLE)
273 WRITE1((unsigned char)encoded)
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
H A D_codecs_iso2022.c160 DBCHAR encoded; local
183 encoded = MAP_UNMAPPABLE;
186 encoded = dsg->encoder(&c, &length);
187 if (encoded == MAP_MULTIPLE_AVAIL) {
202 encoded = dsg->encoder(u4in, &length);
204 encoded = dsg->encoder(&c, &length);
206 encoded = dsg->encoder(&c, &length);
208 if (encoded != MAP_UNMAPPABLE) {
213 else if (encoded != MAP_UNMAPPABLE)
273 WRITE1((unsigned char)encoded)
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_json.c1976 PyObject *encoded = encoder_encode_string(s, obj); local
1977 if (encoded == NULL)
1979 return _steal_list_append(rval, encoded);
1982 PyObject *encoded = PyObject_Str(obj); local
1983 if (encoded == NULL)
1985 return _steal_list_append(rval, encoded);
1988 PyObject *encoded = encoder_encode_float(s, obj); local
1989 if (encoded == NULL)
1991 return _steal_list_append(rval, encoded);
2115 PyObject *encoded; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dbytearrayobject.c784 PyObject *new, *encoded; local
786 encoded = PyCodec_Encode(arg, encoding, errors);
787 if (encoded == NULL)
789 assert(PyBytes_Check(encoded));
792 encoded = arg;
796 Py_DECREF(encoded);
806 PyObject *encoded, *new; local
812 encoded = PyCodec_Encode(arg, encoding, errors);
813 if (encoded == NULL)
815 assert(PyBytes_Check(encoded));
[all...]
H A Dfileobject.c1806 PyObject *encoded = NULL; local
1838 encoded = PyUnicode_AsEncodedString(text, encoding, errors);
1839 if (encoded == NULL)
1841 s = PyString_AS_STRING(encoded);
1842 n = PyString_GET_SIZE(encoded);
1858 Py_XDECREF(encoded);
2440 PyMem_Free(name); /* free the encoded string */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_json.c1984 PyObject *encoded = encoder_encode_string(s, obj); local
1985 if (encoded == NULL)
1987 return _steal_list_append(rval, encoded);
1990 PyObject *encoded = PyObject_Str(obj); local
1991 if (encoded == NULL)
1993 return _steal_list_append(rval, encoded);
1996 PyObject *encoded = encoder_encode_float(s, obj); local
1997 if (encoded == NULL)
1999 return _steal_list_append(rval, encoded);
2123 PyObject *encoded; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dbytearrayobject.c778 PyObject *new, *encoded; local
780 encoded = PyCodec_Encode(arg, encoding, errors);
781 if (encoded == NULL)
783 assert(PyBytes_Check(encoded));
786 encoded = arg;
790 Py_DECREF(encoded);
800 PyObject *encoded, *new; local
806 encoded = PyCodec_Encode(arg, encoding, errors);
807 if (encoded == NULL)
809 assert(PyBytes_Check(encoded));
[all...]
H A Dfileobject.c1746 PyObject *encoded = NULL; local
1776 encoded = PyUnicode_AsEncodedString(text, encoding, errors);
1777 if (encoded == NULL)
1779 s = PyString_AS_STRING(encoded);
1780 n = PyString_GET_SIZE(encoded);
1791 Py_XDECREF(encoded);
2373 PyMem_Free(name); /* free the encoded string */

Completed in 33 milliseconds