HomeSort by relevance Sort by last modified time
    Searched defs:end_idx (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/arm-trusted-firmware/bl31/
runtime_svc.c 84 uint32_t index, start_idx, end_idx; local
136 end_idx = get_unique_oen(rt_svc_descs[index].end_oen,
139 for (; start_idx <= end_idx; start_idx++)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_json.c 867 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
882 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
885 if (idx <= end_idx && str[idx] != '}') {
886 while (idx <= end_idx) {
898 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
899 if (idx > end_idx || str[idx] != ':') {
904 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
924 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
927 if (idx > end_idx) break;
938 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
991 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
1115 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1182 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
1277 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1379 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_json.c 890 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
905 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
908 if (idx <= end_idx && str[idx] != '}') {
909 while (idx <= end_idx) {
921 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
922 if (idx > end_idx || str[idx] != ':') {
927 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
947 while (idx <= end_idx && IS_WHITESPACE(str[idx])) idx++;
950 if (idx > end_idx) break;
1014 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
1138 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1205 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
1300 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1402 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 547 uptr end_idx = beg_idx + count * size; local
549 if (end_idx + size > region->mapped_user) {
552 while (end_idx + size > region->mapped_user + map_size)
554 CHECK_GE(region->mapped_user + map_size, end_idx);
    [all...]

Completed in 150 milliseconds