Searched refs:fill_size (Results 1 - 7 of 7) sorted by relevance

/macosx-10.9.5/cctools-845/as/
H A Dfrags.c248 * .align power_of_2_alignment, fill_expression, fill_size, max_bytes_to_fill
249 * the fill_size must be 1, 2 or 4. An rs_align frag stores the
251 * in the fr_literal bytes, the fill_size in the fr_var field and the
253 * parameter large enough to hold the fill_expression of fill_size plus the
264 int fill_size,
278 fill_size == 1 && *fill == (char)0x90 && flagseen['k'] == TRUE){
286 max_chars = fill_size + (fill_size - 1);
291 fill_size, /* var */
296 if(fill_size
255 frag_align( int power_of_2_alignment, char *fill, int fill_size, int max_bytes_to_fill) argument
[all...]
H A Dfrags.h114 int fill_size,
H A Dread.c1629 * The parameter fill_size can only be 1, 2 or 4 which is the size of the
1636 int fill_size,
1643 if(fill_size != 1 && fill_size != 2 && fill_size != 4)
1644 as_bad("Internal error, s_align() called with bad fill_size %d",
1645 fill_size);
1696 fill_size = 2; /* 2 byte fill size */
1701 fill_size = 1; /* 1 byte fill size */
1706 fill_size
1635 s_align( int fill_size, int bytes_p) argument
[all...]
H A Dlayout.c170 uint32_t nbytes, fill_size, repeat_expression, partial_bytes, layout_pass; local
346 * as the fill_size * repeat_expression + partial_bytes.
357 fill_size = fragP->fr_var;
358 repeat_expression = nbytes / fill_size;
371 fill_size == 1 &&
377 * The call to i386_align_code() has set the fill_size
386 partial_bytes = nbytes - (repeat_expression * fill_size);
390 * the fill_size.
396 * of fill_size. When the rs_align frag was created it was
397 * created with fill_size
[all...]
H A Dwrite_object.c166 int32_t fill_size; local
459 fill_size = fragP->fr_var;
461 for(count = 0; count < num_bytes; count += fill_size){
462 memcpy(output_addr + offset, fill_literal, fill_size);
463 offset += fill_size;
/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dvm_kern.c253 vm_map_size_t map_size, fill_size; local
298 * guard pages. If those were requested, then back it out of fill_size
305 fill_size = map_size;
310 fill_size -= PAGE_SIZE_64;
311 if (map_size < fill_start + fill_size) {
320 fill_size -= PAGE_SIZE_64;
321 if (map_size <= fill_start + fill_size) {
328 wired_page_count = (int) (fill_size / PAGE_SIZE_64);
329 assert(wired_page_count * PAGE_SIZE_64 == fill_size);
396 fill_size, map_mas
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dlinker.c2667 size_t fill_size;
2679 fill_size = link_order->u.data.size;
2680 if (fill_size != 0 && fill_size < size)
2687 if (fill_size == 1)
2693 memcpy (p, link_order->u.data.contents, fill_size);
2694 p += fill_size;
2695 size -= fill_size;
2697 while (size >= fill_size);
2660 size_t fill_size; local

Completed in 148 milliseconds