Home
last modified time | relevance | path

Searched refs:uarg (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Python/
Dgetargs.c623 PyObject *uarg; in convertsimple() local
862 uarg = UNICODE_DEFAULT_ENCODING(arg); in convertsimple()
863 if (uarg == NULL) in convertsimple()
867 PyString_AS_STRING(uarg), PyString_GET_SIZE(uarg), in convertsimple()
892 uarg = UNICODE_DEFAULT_ENCODING(arg); in convertsimple()
893 if (uarg == NULL) in convertsimple()
896 *p = PyString_AS_STRING(uarg); in convertsimple()
897 STORE_SIZE(PyString_GET_SIZE(uarg)); in convertsimple()
915 uarg = UNICODE_DEFAULT_ENCODING(arg); in convertsimple()
916 if (uarg == NULL) in convertsimple()
[all …]
/external/clang/test/OpenMP/
Dtarget_update_ast_print.cpp12 T foo(T targ, U uarg) { in foo() argument
/external/llvm-project/clang/test/OpenMP/
Dtarget_update_ast_print.cpp24 T foo(T targ, U uarg) { in foo() argument
/external/curl/lib/
Dsetopt.c162 unsigned long uarg; in Curl_vsetopt() local
2448 uarg = va_arg(param, unsigned long); in Curl_vsetopt()
2450 if(uarg > UINT_MAX) in Curl_vsetopt()
2453 data->set.scope_id = (unsigned int)uarg; in Curl_vsetopt()