HomeSort by relevance Sort by last modified time
    Searched defs:round_up (Results 1 - 19 of 19) sorted by null

  /external/linux-kselftest/tools/testing/selftests/bpf/
test_xdp_meta.c 8 #define round_up(x, y) ((((x) - 1) | __round_mask(x, y)) + 1) macro
22 data_meta + round_up(ETH_ALEN, 4) > data)
37 ret = bpf_xdp_adjust_meta(ctx, -round_up(ETH_ALEN, 4));
46 data_meta + round_up(ETH_ALEN, 4) > data)
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/
utils_def.h 42 * The round_up() macro rounds up a value to the given boundary in a
52 #define round_up(value, boundary) \ macro
60 round_up((val), _div)/_div; \
  /bionic/linker/
linker_block_allocator.cpp 38 static constexpr size_t round_up(size_t size, size_t multiplier) { function
54 round_up(block_size < sizeof(FreeBlockInfo) ? sizeof(FreeBlockInfo) : block_size, 16)),
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_simulator_validate.h 46 #define round_up(x, y) align(x, y) macro
  /external/avb/examples/uefi/
uefi_avb_boot.c 109 static size_t round_up(size_t value, size_t size) { function
203 offset += round_up(header->kernel_size, header->page_size);
205 offset += round_up(header->ramdisk_size, header->page_size);
  /external/libdrm/omap/
omap_drm.c 50 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) macro
219 bo->size = round_up(size.tiled.width, PAGE_SIZE) * size.tiled.height;
  /system/extras/verity/
build_verity_tree.cpp 33 #define round_up(x,y) (div_round_up(x,y)*(y)) macro
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 77 const static int ROUND_UP[4] = { 0, 3, 2, 1 };
80 round_up(int n) function in namespace:android
82 return n + ROUND_UP[n % 4];
115 int nameBufSize = round_up(file.nameLen);
153 bytesWritten += sizeof(FileState) + round_up(name.length());
187 int paddingLen = ROUND_UP[nameLen % 4];
    [all...]
  /toolchain/binutils/binutils-2.27/ld/
ldexp.c 154 bfd_boolean round_up = FALSE; local
161 round_up = TRUE;
165 if (round_up)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
intobject.c 1012 int round_up; local
1038 round_up = (abs_ival & lsb) && (abs_ival & (3*lsb-1));
1040 if (round_up)
    [all...]
floatobject.c 1448 int half_eps, digit, round_up, sign=1; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
intobject.c 992 int round_up; local
1018 round_up = (abs_ival & lsb) && (abs_ival & (3*lsb-1));
1020 if (round_up)
    [all...]
floatobject.c 1433 int half_eps, digit, round_up, sign=1; local
    [all...]
  /external/python/cpython2/Objects/
intobject.c 1005 int round_up; local
1031 round_up = (abs_ival & lsb) && (abs_ival & (3*lsb-1));
1033 if (round_up)
    [all...]
floatobject.c 1457 int half_eps, digit, round_up, sign=1; local
    [all...]
  /external/python/cpython3/Objects/
floatobject.c 1229 int half_eps, digit, round_up, negate=0; local
    [all...]
  /external/syslinux/efi/
main.c 459 static inline UINT64 round_up(UINT64 x, UINT64 y) function
507 start = round_up(best, align);
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc 5121 Label round_up; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree.h 5234 #define round_up macro
    [all...]

Completed in 959 milliseconds