| /src/external/gpl3/binutils/dist/libctf/ |
| ctf-qsort_r.c | 102 char *base_ptr = (char *) pbase; local 112 char *lo = base_ptr; 207 /* Once the BASE_PTR array is partially sorted by quicksort the rest 209 for partitions below MAX_THRESH size. BASE_PTR points to the beginning 216 char *const end_ptr = &base_ptr[size * (total_elems - 1)]; 217 char *tmp_ptr = base_ptr; 218 char *thresh = min(end_ptr, base_ptr + max_thresh); 229 if (tmp_ptr != base_ptr) 230 SWAP (tmp_ptr, base_ptr, size); 234 run_ptr = base_ptr + size [all...] |
| /src/external/gpl3/binutils.old/dist/libctf/ |
| ctf-qsort_r.c | 102 char *base_ptr = (char *) pbase; local 112 char *lo = base_ptr; 207 /* Once the BASE_PTR array is partially sorted by quicksort the rest 209 for partitions below MAX_THRESH size. BASE_PTR points to the beginning 216 char *const end_ptr = &base_ptr[size * (total_elems - 1)]; 217 char *tmp_ptr = base_ptr; 218 char *thresh = min(end_ptr, base_ptr + max_thresh); 229 if (tmp_ptr != base_ptr) 230 SWAP (tmp_ptr, base_ptr, size); 234 run_ptr = base_ptr + size [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| cp-ubsan.cc | 312 tree base_ptr = TREE_VALUE ((tree) data); local 314 base_ptr = build_base_path (PLUS_EXPR, base_ptr, binfo, /*nonnull=*/1, 319 = build_vfield_ref (cp_build_fold_indirect_ref (base_ptr),
|
| init.cc | 104 tree base_ptr = TREE_VALUE ((tree) data); local 106 base_ptr = build_base_path (PLUS_EXPR, base_ptr, binfo, /*nonnull=*/1, 109 expand_virtual_init (binfo, base_ptr);
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/sodium/ |
| utils.c | 521 unsigned char *base_ptr; local 538 if ((base_ptr = _alloc_aligned(total_size)) == NULL) { 541 unprotected_ptr = base_ptr + page_size * 2U; 542 _mprotect_noaccess(base_ptr + page_size, page_size); 552 memcpy(base_ptr, &unprotected_size, sizeof unprotected_size); 553 _mprotect_readonly(base_ptr, page_size); 597 unsigned char *base_ptr; local 608 base_ptr = unprotected_ptr - page_size * 2U; 609 memcpy(&unprotected_size, base_ptr, sizeof unprotected_size); 611 _mprotect_readwrite(base_ptr, total_size) 639 unsigned char *base_ptr; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/s390/ |
| s390.cc | 2947 bool base_ptr = false; local 3038 if (!s390_decompose_constant_pool_ref (&base, &disp, &pointer, &base_ptr, 3048 if (base && indx && !base_ptr
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gimplify.cc | 8868 /* Returns true if EXPR is or contains (as a sub-component) BASE_PTR. */ 8871 is_or_contains_p (tree expr, tree base_ptr) 8873 if ((TREE_CODE (expr) == INDIRECT_REF && TREE_CODE (base_ptr) == MEM_REF) 8874 || (TREE_CODE (expr) == MEM_REF && TREE_CODE (base_ptr) == INDIRECT_REF)) 8876 TREE_OPERAND (base_ptr, 0)); 8877 while (!operand_equal_p (expr, base_ptr)) 8879 if (TREE_CODE (base_ptr) == COMPOUND_EXPR) 8880 base_ptr = TREE_OPERAND (base_ptr, 1); 8881 if (TREE_CODE (base_ptr) == COMPONENT_RE 8962 tree base_ptr = TREE_OPERAND (decl, 0); local [all...] |