Searched refs:result_s (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Objects/stringlib/ |
D | transmogrify.h | 242 char *result_s; in stringlib_replace_interleave() local 274 result_s = STRINGLIB_STR(result); in stringlib_replace_interleave() 278 memcpy(result_s, to_s, to_len); in stringlib_replace_interleave() 279 result_s += to_len; in stringlib_replace_interleave() 283 *result_s++ = *self_s++; in stringlib_replace_interleave() 284 memcpy(result_s, to_s, to_len); in stringlib_replace_interleave() 285 result_s += to_len; in stringlib_replace_interleave() 289 result_s[0] = to_s[0]; in stringlib_replace_interleave() 290 result_s += to_len; in stringlib_replace_interleave() 293 *result_s++ = *self_s++; in stringlib_replace_interleave() [all …]
|
/external/ltp/scripts/tests/ |
D | test_abspath.sh | 71 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/ |
D | bytearrayobject.c | 1593 char *self_s, *result_s; in replace_interleave() local 1624 result_s = PyByteArray_AS_STRING(result); in replace_interleave() 1629 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave() 1630 result_s += to_len; in replace_interleave() 1634 *result_s++ = *self_s++; in replace_interleave() 1635 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave() 1636 result_s += to_len; in replace_interleave() 1640 Py_MEMCPY(result_s, self_s, self_len-i); in replace_interleave() 1651 char *self_s, *result_s; in replace_delete_single_character() local 1671 result_s = PyByteArray_AS_STRING(result); in replace_delete_single_character() [all …]
|
D | stringobject.c | 2365 char *self_s, *result_s; in replace_interleave() local 2396 result_s = PyString_AS_STRING(result); in replace_interleave() 2401 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave() 2402 result_s += to_len; in replace_interleave() 2406 *result_s++ = *self_s++; in replace_interleave() 2407 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave() 2408 result_s += to_len; in replace_interleave() 2412 Py_MEMCPY(result_s, self_s, self_len-i); in replace_interleave() 2423 char *self_s, *result_s; in replace_delete_single_character() local 2443 result_s = PyString_AS_STRING(result); in replace_delete_single_character() [all …]
|
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | control_flow_test.py | 92 result_i, result_s = results 94 self.assertEqual(10, self.evaluate(result_s))
|