| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_interceptors.cc | 430 uptr from_size = REAL(strlen)(from) + 1; local 431 CHECK_RANGES_OVERLAP("strcpy", to, from_size, from, from_size); 432 ASAN_READ_RANGE(ctx, from, from_size); 433 ASAN_WRITE_RANGE(ctx, to, from_size); 475 uptr from_size = Min(size, MaybeRealStrnlen(from, size) + 1); local 476 CHECK_RANGES_OVERLAP("strncpy", to, from_size, from, from_size); 477 ASAN_READ_RANGE(ctx, from, from_size);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
| asan_str_test.cc | 190 size_t from_size = Ident(6); // less than to_size local 192 char *from = Ident((char*)malloc(from_size)); 196 strcpy(to + to_size - from_size, from); 202 EXPECT_DEATH(Ident(strcpy(to, from + from_size)), RightOOBReadMessage(0)); 205 from[from_size - 1] = '!'; 213 size_t from_size = Ident(6); // less than to_size local 216 char *from = Ident((char*)malloc(from_size)); 222 strncpy(to, from, from_size); 224 strncpy(to, from + from_size - 1, to_size); 227 EXPECT_DEATH(Ident(strncpy(to, from - 1, from_size)), 420 size_t from_size = Ident(20); local 455 size_t from_size = Ident(20); local [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_interceptors.cpp | 422 uptr from_size = internal_strlen(from) + 1; local 423 CHECK_RANGES_OVERLAP("strcpy", to, from_size, from, from_size); 424 ASAN_READ_RANGE(ctx, from, from_size); 425 ASAN_WRITE_RANGE(ctx, to, from_size); 467 uptr from_size = Min(size, MaybeRealStrnlen(from, size) + 1); local 468 CHECK_RANGES_OVERLAP("strncpy", to, from_size, from, from_size); 469 ASAN_READ_RANGE(ctx, from, from_size);
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_interceptors.cpp | 560 uptr from_size = internal_strlen(from) + 1; local 561 CHECK_RANGES_OVERLAP("strcpy", to, from_size, from, from_size); 562 ASAN_READ_RANGE(ctx, from, from_size); 563 ASAN_WRITE_RANGE(ctx, to, from_size); 611 uptr from_size = Min(size, MaybeRealStrnlen(from, size) + 1); local 612 CHECK_RANGES_OVERLAP("strncpy", to, from_size, from, from_size); 613 ASAN_READ_RANGE(ctx, from, from_size);
|
| /src/external/gpl3/gdb.old/dist/gdbserver/ |
| ax.cc | 151 int from_offset, from_size; member in struct:bytecode_address 439 aentry->from_offset = aentry->from_size = 0; 529 emit_eq_goto (&(aentry->from_offset), &(aentry->from_size)); 542 emit_ne_goto (&(aentry->from_offset), &(aentry->from_size)); 559 emit_lt_goto (&(aentry->from_offset), &(aentry->from_size)); 572 emit_ge_goto (&(aentry->from_offset), &(aentry->from_size)); 608 emit_if_goto (&(aentry->from_offset), &(aentry->from_size)); 615 emit_goto (&(aentry->from_offset), &(aentry->from_size)); 699 emit_gt_goto (&(aentry->from_offset), &(aentry->from_size)); 714 emit_le_goto (&(aentry->from_offset), &(aentry->from_size)); [all...] |
| /src/external/gpl3/gdb/dist/gdbserver/ |
| ax.cc | 151 int from_offset, from_size; member in struct:bytecode_address 439 aentry->from_offset = aentry->from_size = 0; 529 emit_eq_goto (&(aentry->from_offset), &(aentry->from_size)); 542 emit_ne_goto (&(aentry->from_offset), &(aentry->from_size)); 559 emit_lt_goto (&(aentry->from_offset), &(aentry->from_size)); 572 emit_ge_goto (&(aentry->from_offset), &(aentry->from_size)); 608 emit_if_goto (&(aentry->from_offset), &(aentry->from_size)); 615 emit_goto (&(aentry->from_offset), &(aentry->from_size)); 699 emit_gt_goto (&(aentry->from_offset), &(aentry->from_size)); 714 emit_le_goto (&(aentry->from_offset), &(aentry->from_size)); [all...] |
| /src/external/public-domain/xz/dist/src/xz/ |
| coder.c | 707 const char *from_size = uint64_to_str(orig_dict_size >> 20, 0); local 715 lzma_num, from_size, to_size, limit_size); 720 lzma_num, i, from_size, to_size, limit_size);
|
| /src/external/gpl3/gcc/dist/gcc/ |
| expmed.cc | 136 int to_size, from_size; local 140 from_size = GET_MODE_PRECISION (from_mode); 150 && pow2p_hwi (from_size)) 151 from_size --; 154 which = (to_size < from_size ? all->trunc : all->zext);
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| expmed.cc | 135 int to_size, from_size; local 139 from_size = GET_MODE_PRECISION (from_mode); 149 && pow2p_hwi (from_size)) 150 from_size --; 153 which = (to_size < from_size ? all->trunc : all->zext);
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_string.c | 2095 size_t to_size, from_size; local 2102 from_size = 2; 2104 from_size = 1; 2114 while (remaining >= from_size) { 2157 itp += from_size; 2158 remaining -= from_size;
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| ada-lang.c | 2902 int from_size; 2911 from_size = fromval->bitsize (); 2912 if (from_size == 0) 2913 from_size = fromval->type ()->length () * TARGET_CHAR_BIT; 2918 from_offset = from_size - bits; 2897 int from_size; local
|
| /src/external/gpl3/gdb/dist/gdb/ |
| ada-lang.c | 2900 int from_size; 2909 from_size = fromval->bitsize (); 2910 if (from_size == 0) 2911 from_size = fromval->type ()->length () * TARGET_CHAR_BIT; 2916 from_offset = from_size - bits; 2895 int from_size; local
|
| /src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| rs6000.cc | 13647 unsigned from_size = GET_MODE_SIZE (from); 13650 if (from_size != to_size) 13690 if (from_size < 8 || to_size < 8) 13693 if (from_size == 8 && (8 * to_nregs) != to_size) 13696 if (to_size == 8 && (8 * from_nregs) != from_size) 13713 unsigned num_regs = (from_size + 15) / 16; 13718 return (from_size == 8 || from_size == 16); 13628 unsigned from_size = GET_MODE_SIZE (from); local
|
| /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/ |
| rs6000.cc | 13262 unsigned from_size = GET_MODE_SIZE (from); 13265 if (from_size != to_size) 13305 if (from_size < 8 || to_size < 8) 13308 if (from_size == 8 && (8 * to_nregs) != to_size) 13311 if (to_size == 8 && (8 * from_nregs) != from_size) 13328 unsigned num_regs = (from_size + 15) / 16; 13333 return (from_size == 8 || from_size == 16); 13243 unsigned from_size = GET_MODE_SIZE (from); local
|