HomeSort by: relevance | last modified time | path
    Searched refs:round_down (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
i915_random.c 104 BUG_ON(round_up(start, align) > round_down(end - len, align));
106 range = round_down(end - len, align) - round_up(start, align);
mock_gtt.c 78 ppgtt->vm.total = round_down(U64_MAX, PAGE_SIZE);
i915_vma.c 281 INVALID(0, PIN_GLOBAL | PIN_OFFSET_FIXED | round_down(U64_MAX, PAGE_SIZE)),
291 NOSPACE(round_down(U64_MAX, PAGE_SIZE), PIN_GLOBAL),
294 INVALID(8192, PIN_GLOBAL | PIN_OFFSET_FIXED | (round_down(U64_MAX, PAGE_SIZE) - 4096)),
i915_gem_gtt.c 674 addr <= round_down(hole_end - 2*I915_GTT_PAGE_SIZE, step) - I915_GTT_PAGE_SIZE;
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_blit.c 117 return round_down(offset + diff_offs, granularity); \
168 return round_down(offset + vmw_find_first_diff_u8(dst, src, size),
190 return round_down(location, granularity); \
199 size_t to_copy = round_down(size, sizeof(_type)); \
236 return round_down(vmw_find_last_diff_u8(dst, src, size) - 1,
297 if (WARN_ON_ONCE(round_down(n, diff->cpp) != n))
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_ring.h 109 #define cacheline(a) round_down(a, CACHELINE_BYTES)
gen6_ppgtt.c 196 start = round_down(start, SZ_64K);
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_gem_gtt.c 164 GEM_BUG_ON(round_up(start, align) > round_down(end - len, align));
166 range = round_down(end - len, align) - round_up(start, align);
242 if (unlikely(round_up(start, alignment) > round_down(end - size, alignment)))
i915_sysfs.c 181 count = round_down(count, sizeof(u32));
227 count = round_down(count, sizeof(u32));
i915_buddy.c 117 size = round_down(size, chunk_size);
  /src/external/gpl3/gcc/dist/gcc/config/m68k/
math-68881.h 391 int rounding_mode, round_down; local
397 round_down = (rounding_mode & ~0x10)
401 : "dmi" (round_down));
  /src/external/gpl3/gcc.old/dist/gcc/config/m68k/
math-68881.h 391 int rounding_mode, round_down; local
397 round_down = (rounding_mode & ~0x10)
401 : "dmi" (round_down));
  /src/libexec/ld.elf_so/
map_object.c 290 base_vaddr = round_down(segs[0]->p_vaddr);
293 data_offset = round_down(segs[nsegs]->p_offset);
294 data_vaddr = round_down(segs[nsegs]->p_vaddr);
354 data_offset = round_down(segs[i]->p_offset);
355 data_vaddr = round_down(segs[i]->p_vaddr);
382 clear_page = mapbase + (round_down(clear_vaddr)
rtld.h 63 #define round_down(x) ((x) & ~(_rtld_pagesz - 1)) macro
64 #define round_up(x) round_down((x) + _rtld_pagesz - 1)
headers.c 570 obj->vaddrbase = round_down(vaddr);
rtld.c 1872 uintptr_t relro_start = round_down((uintptr_t)obj->relro_page);
1874 size_t relro_size = round_down(relro_end) - relro_start;
  /src/sys/external/bsd/common/include/linux/
kernel.h 121 #define round_down(X, N) ((X) & ~(uintmax_t)((N) - 1)) macro
125 #define ALIGN_DOWN(X, N) round_down(X, N)
  /src/external/gpl3/gcc/dist/gcc/
fold-const.h 184 #define round_down(T,N) round_down_loc (UNKNOWN_LOCATION, T, N) macro
function.cc 4253 rounded = round_down (offset, boundary / BITS_PER_UNIT);
  /src/external/gpl3/gcc.old/dist/gcc/
fold-const.h 185 #define round_down(T,N) round_down_loc (UNKNOWN_LOCATION, T, N) macro
function.cc 4256 rounded = round_down (offset, boundary / BITS_PER_UNIT);
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
i915_gem_context.c 568 size = round_down(size, DW_PER_PAGE * PAGE_SIZE);
1757 offset = round_down(offset, alignof_dword);
huge_pages.c 1190 offset_low = round_down(offset_low,
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/fast_float/
fast_float.h 2590 fastfloat_really_inline void round_down(adjusted_mantissa& am, int32_t shift) noexcept {
2781 round<T>(am_b, [](adjusted_mantissa&a, int32_t shift) { round_down(a, shift); });
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/fast_float/
fast_float.h 2582 fastfloat_really_inline void round_down(adjusted_mantissa& am, int32_t shift) noexcept {
2773 round<T>(am_b, [](adjusted_mantissa&a, int32_t shift) { round_down(a, shift); });

Completed in 56 milliseconds

1 2