Searched refs:result_s (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython3/Objects/stringlib/
H A Dtransmogrify.h242 char *result_s; local
274 result_s = STRINGLIB_STR(result);
278 memcpy(result_s, to_s, to_len);
279 result_s += to_len;
283 *result_s++ = *self_s++;
284 memcpy(result_s, to_s, to_len);
285 result_s += to_len;
289 result_s[0] = to_s[0];
290 result_s += to_len;
293 *result_s
312 char *result_s; local
357 char *result_s; local
409 char *result_s, *start, *next; local
457 char *result_s, *start; local
509 char *result_s; local
573 char *result_s; local
[all...]
/external/ltp/scripts/tests/
H A Dtest_abspath.sh71 result_s="matches expected string _abspath(${test_string}) => $result == $expected_string)"
74 result_s="doesn't match expected string _abspath(${test_string}) => $result != $expected_string)"
79 tst_resm $result_v "Test string $result_s"
92 result_s="matches expected string abspath.sh ${test_string} => $result == $expected_string)"
95 result_s="doesn't match expected string abspath.sh ${test_string} => $result != $expected_string)"
100 tst_resm $result_v "Test string $result_s"
109 result_s="matches expected string abspath.sh ${test_string} => $result == $expected_string)"
112 result_s="doesn't match expected string abspath.sh ${test_string} => $result != $expected_string)"
117 tst_resm $result_v "Test string $result_s"
/external/python/cpython2/Objects/
H A Dbytearrayobject.c1572 char *self_s, *result_s; local
1604 result_s = PyByteArray_AS_STRING(result);
1609 Py_MEMCPY(result_s, to_s, to_len);
1610 result_s += to_len;
1614 *result_s++ = *self_s++;
1615 Py_MEMCPY(result_s, to_s, to_len);
1616 result_s += to_len;
1620 Py_MEMCPY(result_s, self_s, self_len-i);
1631 char *self_s, *result_s; local
1651 result_s
1675 char *self_s, *result_s; local
1727 char *self_s, *result_s, *start, *end, *next; local
1773 char *result_s, *start, *end; local
1824 char *self_s, *result_s; local
1891 char *self_s, *result_s; local
[all...]
H A Dstringobject.c2359 char *self_s, *result_s; local
2391 result_s = PyString_AS_STRING(result);
2396 Py_MEMCPY(result_s, to_s, to_len);
2397 result_s += to_len;
2401 *result_s++ = *self_s++;
2402 Py_MEMCPY(result_s, to_s, to_len);
2403 result_s += to_len;
2407 Py_MEMCPY(result_s, self_s, self_len-i);
2418 char *self_s, *result_s; local
2438 result_s
2461 char *self_s, *result_s; local
2513 char *self_s, *result_s, *start, *end, *next; local
2559 char *result_s, *start, *end; local
2610 char *self_s, *result_s; local
2676 char *self_s, *result_s; local
[all...]

Completed in 743 milliseconds