HomeSort by relevance Sort by last modified time
    Searched refs:div_round_up (Results 1 - 6 of 6) sorted by null

  /external/u-boot/arch/arm/include/asm/arch-omap5/
sys_proto.h 79 static inline u32 div_round_up(u32 num, u32 den) function
86 return div_round_up(32768 * usec, 1000000);
  /external/tensorflow/tensorflow/python/compiler/tensorrt/test/
conv2d_test.py 64 def div_round_up(n, d): function
167 h = div_round_up(h, 2)
168 w = div_round_up(w, 2)
176 h = div_round_up(h, 2)
177 w = div_round_up(w, 2)
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/
utils_def.h 22 * This variant of div_round_up can be used in macro definition but should not
58 #define div_round_up(val, div) __extension__ ({ \ macro
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_gmem.c 214 #define div_round_up(v, a) (((v) + (a) - 1) / (a)) macro
217 while (div_round_up(nbins_y, tpp_y) > 8)
219 while ((div_round_up(nbins_y, tpp_y) *
220 div_round_up(nbins_x, tpp_x)) > 8)
281 p = ((i / tpp_y) * div_round_up(nbins_x, tpp_x)) + (j / tpp_x);
  /external/mesa3d/src/gallium/drivers/vc5/
vc5_rcl.c 438 #define div_round_up(a, b) (((a) + (b) - 1) / b) macro
657 frame_w_in_supertiles = div_round_up(job->draw_tiles_x,
659 frame_h_in_supertiles = div_round_up(job->draw_tiles_y,
  /external/toybox/toys/pending/
mke2fs.c 242 static uint32_t div_round_up(uint32_t a, uint32_t b) function
610 else TT.groups = div_round_up(TT.blocks, TT.blockbits);

Completed in 835 milliseconds