Home
last modified time | relevance | path

Searched refs:retstr (Results 1 – 5 of 5) sorted by relevance

/third_party/openh264/docs/
Ddoxygen2rst.py94 retstr = text.translate(table, string.punctuation)
95 words = retstr.split()
96 retstr = "-".join(words)
97 return retstr.lower()
138 retstr = ""
140 retstr = self._build_uml(m.groups()[1], m.groups()[2])
143 retstr = ("`%s <%s>`_" % (m.groups()[2], link))
146 retstr += self._build_title(m.groups()[2])
147 retstr += self.convert_doxy(m.groups()[0], m.groups()[1])
149 return retstr
[all …]
/third_party/mesa3d/src/freedreno/afuc/
Dasm.h69 char *retstr; in parse_reg() local
85 ret = strtol(str + 1, &retstr, 16); in parse_reg()
87 if (*retstr != '\0') { in parse_reg()
98 char *retstr; in parse_literal() local
101 ret = strtol(str + 1, &retstr, 16); in parse_literal()
103 if (*retstr != ']') { in parse_literal()
/third_party/iptables/extensions/
Dlibipt_CLUSTERIP.c115 const char *retstr; in hashmode2str() local
118 retstr = "sourceip"; in hashmode2str()
121 retstr = "sourceip-sourceport"; in hashmode2str()
124 retstr = "sourceip-sourceport-destport"; in hashmode2str()
127 retstr = "unknown-error"; in hashmode2str()
130 return retstr; in hashmode2str()
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/
Dgendynapi.pl83 my $retstr = ($rc eq 'void') ? '' : 'return';
128 print SDL_DYNAPI_PROCS_H "SDL_DYNAPI_PROC($rc,$fn,$paramstr,$argstr,$retstr)\n";
/third_party/python/Modules/cjkcodecs/
Dmultibytecodec.c230 PyObject *retobj = NULL, *retstr = NULL, *tobj; in multibytecodec_encerror() local
338 retstr = multibytecodec_encode(codec, state, tobj, in multibytecodec_encerror()
341 if (retstr == NULL) in multibytecodec_encerror()
346 retstr = tobj; in multibytecodec_encerror()
349 assert(PyBytes_Check(retstr)); in multibytecodec_encerror()
350 retstrsize = PyBytes_GET_SIZE(retstr); in multibytecodec_encerror()
353 memcpy(buf->outbuf, PyBytes_AS_STRING(retstr), retstrsize); in multibytecodec_encerror()
370 Py_DECREF(retstr); in multibytecodec_encerror()
375 Py_XDECREF(retstr); in multibytecodec_encerror()