HomeSort by: relevance | last modified time | path
    Searched defs:to_size (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_str_test.cc 189 size_t to_size = Ident(30); local
190 size_t from_size = Ident(6); // less than to_size
191 char *to = Ident((char*)malloc(to_size));
196 strcpy(to + to_size - from_size, from);
203 EXPECT_DEATH(Ident(strcpy(to + to_size, from)), RightOOBWriteMessage(0));
212 size_t to_size = Ident(20); local
213 size_t from_size = Ident(6); // less than to_size
214 char *to = Ident((char*)malloc(to_size));
223 strncpy(to, from, to_size);
224 strncpy(to, from + from_size - 1, to_size);
417 size_t to_size = Ident(100); local
452 size_t to_size = Ident(100); local
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_string.c 2092 size_t to_size, from_size; local
2095 to_size = 2;
2097 to_size = 1;
2103 if (archive_string_ensure(as, as->length + length*2+to_size) == NULL)
2110 avail = as->buffer_length - as->length - to_size;
2133 (remaining * to_size) + rbytes;
2139 - as->length - to_size;
2165 avail = as->buffer_length - as->length - to_size;
2170 if (to_size == 2)
  /src/external/gpl3/gcc/dist/gcc/
expmed.cc 136 int to_size, from_size; local
139 to_size = GET_MODE_PRECISION (to_mode);
147 && pow2p_hwi (to_size))
148 to_size --;
154 which = (to_size < from_size ? all->trunc : all->zext);
genrecog.cc 3444 state_size to_size = find_subroutines (type, trans->to, procs);
3445 if (d->next && to_size.depth > MAX_DEPTH)
3453 size.num_statements += to_size.num_statements;
3454 if (to_size.num_statements < MIN_NUM_STATEMENTS)
3457 size.depth = MAX (size.depth, to_size.depth);
3462 candidates.safe_push (subroutine_candidate (trans, to_size));
3440 state_size to_size = find_subroutines (type, trans->to, procs); local
  /src/external/gpl3/gcc.old/dist/gcc/
expmed.cc 135 int to_size, from_size; local
138 to_size = GET_MODE_PRECISION (to_mode);
146 && pow2p_hwi (to_size))
147 to_size --;
153 which = (to_size < from_size ? all->trunc : all->zext);
genrecog.cc 3444 state_size to_size = find_subroutines (type, trans->to, procs);
3445 if (d->next && to_size.depth > MAX_DEPTH)
3453 size.num_statements += to_size.num_statements;
3454 if (to_size.num_statements < MIN_NUM_STATEMENTS)
3457 size.depth = MAX (size.depth, to_size.depth);
3462 candidates.safe_push (subroutine_candidate (trans, to_size));
3440 state_size to_size = find_subroutines (type, trans->to, procs); local
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000.cc 13648 unsigned to_size = GET_MODE_SIZE (to);
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)
13629 unsigned to_size = GET_MODE_SIZE (to); local
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000.cc 13263 unsigned to_size = GET_MODE_SIZE (to);
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)
13244 unsigned to_size = GET_MODE_SIZE (to); local

Completed in 84 milliseconds