HomeSort by: relevance | last modified time | path
    Searched defs:low_bound (Results 1 - 25 of 75) sorted by relevancy

1 2 3

  /src/external/gpl3/gdb.old/dist/gdb/
m2-valprint.c 74 LONGEST i, low_bound, high_bound; local
85 if (get_long_set_bounds (type, &low_bound, &high_bound))
101 for (i = low_bound; i <= high_bound; i++)
397 LONGEST low_bound, high_bound; local
403 i = get_discrete_bounds (range, &low_bound, &high_bound) ? 0 : -1;
412 for (i = low_bound; i <= high_bound; i++)
c-lang.c 264 LONGEST low_bound, high_bound; local
267 &low_bound, &high_bound);
268 fetchlimit = high_bound - low_bound + 1;
657 LONGEST low_bound, high_bound;
660 &low_bound, &high_bound))
662 low_bound = 0;
666 > (high_bound - low_bound + 1))
656 LONGEST low_bound, high_bound; local
c-valprint.c 246 LONGEST low_bound, high_bound;
250 if (!get_array_bounds (type, &low_bound, &high_bound))
254 len = high_bound - low_bound + 1;
245 LONGEST low_bound, high_bound; local
p-valprint.c 90 LONGEST low_bound, high_bound;
92 if (get_array_bounds (type, &low_bound, &high_bound))
94 len = high_bound - low_bound + 1;
345 LONGEST low_bound, high_bound;
350 int bound_info = (get_discrete_bounds (range, &low_bound, &high_bound)
352 if (low_bound == 0 && high_bound == -1 && type->length () > 0)
367 for (i = low_bound; i <= high_bound; i++)
89 LONGEST low_bound, high_bound; local
344 LONGEST low_bound, high_bound; local
ada-valprint.c 52 LONGEST low_bound;
58 if (!get_array_bounds (type, &low_bound, &high_bound))
64 if (low_bound > high_bound)
84 if (low_bound == 0)
88 if (low_bound == 0)
90 low_bound = index_type->field (low_bound).loc_enumval ();
96 if (low_bound == 1)
101 ada_print_scalar (index_type, low_bound, stream);
51 LONGEST low_bound; local
ppc-sysv-tdep.c 1121 LONGEST count, low_bound, high_bound; local
1128 if (!get_array_bounds (type, &low_bound, &high_bound))
1131 LONGEST nr_array_elements = (low_bound > high_bound
1133 : (high_bound - low_bound + 1));
c-typeprint.c 736 LONGEST low_bound, high_bound;
748 else if (get_array_bounds (type, &low_bound, &high_bound))
750 plongest (high_bound - low_bound + 1));
734 LONGEST low_bound, high_bound; local
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-lazy-string.c 198 LONGEST low_bound, high_bound; local
200 if (get_array_bounds (realtype, &low_bound, &high_bound))
201 array_length = high_bound - low_bound + 1;
  /src/external/gpl3/gdb/dist/gdb/
m2-valprint.c 74 LONGEST i, low_bound, high_bound; local
85 if (get_long_set_bounds (type, &low_bound, &high_bound))
101 for (i = low_bound; i <= high_bound; i++)
397 LONGEST low_bound, high_bound; local
403 i = get_discrete_bounds (range, &low_bound, &high_bound) ? 0 : -1;
412 for (i = low_bound; i <= high_bound; i++)
c-lang.c 264 LONGEST low_bound, high_bound; local
267 &low_bound, &high_bound);
268 fetchlimit = high_bound - low_bound + 1;
661 LONGEST low_bound, high_bound;
664 &low_bound, &high_bound))
666 low_bound = 0;
670 > (high_bound - low_bound + 1))
660 LONGEST low_bound, high_bound; local
c-valprint.c 246 LONGEST low_bound, high_bound;
250 if (!get_array_bounds (type, &low_bound, &high_bound))
254 len = high_bound - low_bound + 1;
245 LONGEST low_bound, high_bound; local
p-valprint.c 90 LONGEST low_bound, high_bound;
92 if (get_array_bounds (type, &low_bound, &high_bound))
94 len = high_bound - low_bound + 1;
345 LONGEST low_bound, high_bound;
350 int bound_info = (get_discrete_bounds (range, &low_bound, &high_bound)
352 if (low_bound == 0 && high_bound == -1 && type->length () > 0)
367 for (i = low_bound; i <= high_bound; i++)
89 LONGEST low_bound, high_bound; local
344 LONGEST low_bound, high_bound; local
ada-valprint.c 52 LONGEST low_bound;
58 if (!get_array_bounds (type, &low_bound, &high_bound))
64 if (low_bound > high_bound)
84 if (low_bound == 0)
88 if (low_bound == 0)
90 low_bound = index_type->field (low_bound).loc_enumval ();
96 if (low_bound == 1)
101 ada_print_scalar (index_type, low_bound, stream);
51 LONGEST low_bound; local
ppc-sysv-tdep.c 1121 LONGEST count, low_bound, high_bound; local
1128 if (!get_array_bounds (type, &low_bound, &high_bound))
1131 LONGEST nr_array_elements = (low_bound > high_bound
1133 : (high_bound - low_bound + 1));
  /src/external/gpl3/gdb/dist/gdb/python/
py-lazy-string.c 198 LONGEST low_bound, high_bound; local
200 if (get_array_bounds (realtype, &low_bound, &high_bound))
201 array_length = high_bound - low_bound + 1;
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-array-bounds.cc 282 tree low_bound = array_ref_low_bound (ref); local
289 if (up_bound && tree_int_cst_equal (low_bound, up_bound_p1))
315 && tree_int_cst_le (low_sub, low_bound))
330 && tree_int_cst_lt (low_sub, low_bound))
587 tree low_bound, up_bound, el_sz; local
593 low_bound = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (tem)));
596 if (!low_bound
597 || TREE_CODE (low_bound) != INTEGER_CST
624 - wi::to_offset (low_bound) + 1))
tree-dfa.cc 500 tree low_bound, unit_size; local
504 && (low_bound = array_ref_low_bound (exp),
505 poly_int_tree_p (low_bound))
511 - wi::to_poly_offset (low_bound),
547 && (low_bound = array_ref_low_bound (exp),
548 poly_int_tree_p (low_bound))
556 poly_offset_int lbound = wi::to_poly_offset (low_bound);
819 tree low_bound, unit_size; local
826 low_bound = array_ref_low_bound (exp);
828 && TREE_CODE (low_bound) == SSA_NAME
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/compile/
compile-c-types.c 70 LONGEST low_bound, high_bound, count; local
72 if (!get_array_bounds (type, &low_bound, &high_bound))
76 gdb_assert (low_bound == 0); /* Ensured above. */
  /src/external/gpl3/gdb/dist/gdb/compile/
compile-c-types.c 70 LONGEST low_bound, high_bound, count; local
72 if (!get_array_bounds (type, &low_bound, &high_bound))
76 gdb_assert (low_bound == 0); /* Ensured above. */
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
cache_bin.h 79 * low_bound(derived) low_bits_full stack_head low_bits_empty
489 void **low_bound = cache_bin_low_bound_get(bin, info); local
491 assert((uint16_t)(uintptr_t)low_bound == low_bits_low_bound);
492 void *stashed = *(low_bound + n - 1);
622 void **low_bound = cache_bin_low_bound_get(bin, info); local
623 arr->ptr = low_bound;
629 void **low_bound = cache_bin_low_bound_get(bin, info); local
632 bin->low_bits_full = (uint16_t)(uintptr_t)low_bound;
  /src/external/bsd/jemalloc/include/jemalloc/internal/
cache_bin.h 79 * low_bound(derived) low_bits_full stack_head low_bits_empty
489 void **low_bound = cache_bin_low_bound_get(bin, info); local
491 assert((uint16_t)(uintptr_t)low_bound == low_bits_low_bound);
492 void *stashed = *(low_bound + n - 1);
622 void **low_bound = cache_bin_low_bound_get(bin, info); local
623 arr->ptr = low_bound;
629 void **low_bound = cache_bin_low_bound_get(bin, info); local
632 bin->low_bits_full = (uint16_t)(uintptr_t)low_bound;
  /src/external/gpl3/gcc/dist/gcc/
gimple-array-bounds.cc 270 tree low_bound = array_ref_low_bound (ref); local
277 if (up_bound && tree_int_cst_equal (low_bound, up_bound_p1))
296 && tree_int_cst_le (low_sub, low_bound))
319 && tree_int_cst_lt (low_sub, low_bound))
672 tree low_bound, up_bound, el_sz; local
678 low_bound = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (tem)));
681 if (!low_bound
682 || TREE_CODE (low_bound) != INTEGER_CST
709 - wi::to_offset (low_bound) + 1))
tree-dfa.cc 494 tree low_bound, unit_size; local
498 && (low_bound = array_ref_low_bound (exp),
499 poly_int_tree_p (low_bound))
505 - wi::to_poly_offset (low_bound),
538 && (low_bound = array_ref_low_bound (exp),
539 poly_int_tree_p (low_bound))
548 poly_offset_int lbound = wi::to_poly_offset (low_bound);
813 tree low_bound, unit_size; local
820 low_bound = array_ref_low_bound (exp);
822 && TREE_CODE (low_bound) == SSA_NAME
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
LoadObject.cc 466 Size low_bound = 0, high_bound = 0; local
478 low_bound = fp->img_offset + fp->size;
494 low_bound = fp->img_offset + fp->size;
504 func->size = (unsigned) (high_bound - low_bound);
507 func->img_offset = (off_t) low_bound;
510 func_name = dbe_sprintf (GTXT ("<static>@0x%llx (%s)"), low_bound,
  /src/external/gpl3/binutils.old/dist/gprofng/src/
LoadObject.cc 466 Size low_bound = 0, high_bound = 0; local
478 low_bound = fp->img_offset + fp->size;
494 low_bound = fp->img_offset + fp->size;
504 func->size = (unsigned) (high_bound - low_bound);
507 func->img_offset = (off_t) low_bound;
510 func_name = dbe_sprintf (GTXT ("<static>@0x%llx (%s)"), low_bound,

Completed in 41 milliseconds

1 2 3