Home
last modified time | relevance | path

Searched refs:s_new (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Modules/
Dstropmodule.c462 char *s, *s_new; in strop_lower() local
473 s_new = PyString_AsString(newstr); in strop_lower()
479 *s_new = tolower(c); in strop_lower()
481 *s_new = c; in strop_lower()
482 s_new++; in strop_lower()
501 char *s, *s_new; in strop_upper() local
512 s_new = PyString_AsString(newstr); in strop_upper()
518 *s_new = toupper(c); in strop_upper()
520 *s_new = c; in strop_upper()
521 s_new++; in strop_upper()
[all …]
D_struct.c1350 s_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in s_new() function
1807 s_new, /* tp_new */
/external/ltp/testcases/kernel/mem/lib/
Dmem.c715 char s_new[BUFSIZ], s[BUFSIZ], value[BUFSIZ]; in umount_mem() local
723 snprintf(s_new, BUFSIZ, "%s/tasks", path_new); in umount_mem()
724 fp = fopen(s_new, "r"); in umount_mem()
726 tst_res(TWARN | TERRNO, "fopen %s", s_new); in umount_mem()
/external/python/cpython2/Objects/
Dstringobject.c2055 char *s = PyString_AS_STRING(self), *s_new; in string_title() local
2063 s_new = PyString_AsString(newobj); in string_title()
2076 *s_new++ = c; in string_title()
2090 char *s = PyString_AS_STRING(self), *s_new; in string_capitalize() local
2097 s_new = PyString_AsString(newobj); in string_capitalize()
2101 *s_new = toupper(c); in string_capitalize()
2103 *s_new = c; in string_capitalize()
2104 s_new++; in string_capitalize()
2109 *s_new = tolower(c); in string_capitalize()
2111 *s_new = c; in string_capitalize()
[all …]
/external/tensorflow/tensorflow/core/framework/
Dshape_inference.cc512 void InferenceContext::Relax(ShapeHandle s_old, ShapeHandle s_new, in Relax() argument
514 if (s_old.SameHandle(s_new)) { in Relax()
517 } else if (!RankKnown(s_new) || !s_old.IsSet()) { in Relax()
519 *out = s_new; in Relax()
524 if (rank != Rank(s_new)) { in Relax()
533 auto d1 = Dim(s_new, i); in Relax()
551 Relax(Dim(s_old, i), Dim(s_new, i), &dims[i]); in Relax()
Dshape_inference.h722 void Relax(ShapeHandle s_old, ShapeHandle s_new, ShapeHandle* out);
/external/python/cpython3/Modules/
D_struct.c1406 s_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in s_new() function
2041 s_new, /* tp_new */