Searched defs:RoundUp (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/cc/base/
H A Dutil.h14 template <typename T> T RoundUp(T n, T mul) { function in namespace:cc
/external/chromium_org/gpu/command_buffer/client/
H A Dfenced_allocator.cc26 unsigned int RoundUp(unsigned int size) { function in namespace:gpu::__anon8390
71 size = RoundUp(size);
/external/chromium_org/v8/src/base/
H A Dmacros.h407 inline T RoundUp(T x, intptr_t m) { function
/external/chromium_org/media/filters/
H A Dffmpeg_video_decoder.cc69 static size_t RoundUp(size_t value, size_t alignment) { function in namespace:media
119 RoundUp(std::max(size.width(), codec_context->coded_width), 2),
120 RoundUp(std::max(size.height(), codec_context->coded_height), 2));
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfixed-dtoa.cc193 static void RoundUp(Vector<char> buffer, int* length, int* decimal_point) { function in namespace:WTF::double_conversion
266 RoundUp(buffer, length, decimal_point);
285 RoundUp(buffer, length, decimal_point);
/external/chromium_org/v8/src/
H A Dfixed-dtoa.cc171 static void RoundUp(Vector<char> buffer, int* length, int* decimal_point) { function in namespace:v8::internal
244 RoundUp(buffer, length, decimal_point);
263 RoundUp(buffer, length, decimal_point);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_defs.h147 T RoundUp(T p, u64 align) { function in namespace:__tsan
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlow_level_alloc.cc352 static intptr_t RoundUp(intptr_t addr, intptr_t align) { function
441 size_t req_rnd = RoundUp(request + sizeof (s->header), arena->roundup);
459 size_t new_pages_size = RoundUp(req_rnd, arena->pagesize * 16);
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlow_level_alloc.cc352 static intptr_t RoundUp(intptr_t addr, intptr_t align) { function
441 size_t req_rnd = RoundUp(request + sizeof (s->header), arena->roundup);
459 size_t new_pages_size = RoundUp(req_rnd, arena->pagesize * 16);
/external/chromium_org/media/base/
H A Dvideo_frame.cc24 static inline size_t RoundUp(size_t value, size_t alignment) { function in namespace:media
39 new_coded_size.set_height(RoundUp(new_coded_size.height(), 2));
42 new_coded_size.set_width(RoundUp(new_coded_size.width(), 2));
143 RoundUp(visible_rect.bottom(), 2))
148 RoundUp(visible_rect.right(), 2))
503 const int width = RoundUp(coded_size.width(), 2);
504 const int height = RoundUp(coded_size.height(), 2);
662 size_t y_stride = RoundUp(row_bytes(VideoFrame::kYPlane),
664 size_t uv_stride = RoundUp(row_bytes(VideoFrame::kUPlane),
670 size_t y_height = RoundUp(coded_size
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Ddebugallocation.cc1283 static intptr_t RoundUp(intptr_t value, intptr_t alignment) { function
1303 p = reinterpret_cast<void *>(RoundUp(orig_p + data_offset, alignment));
1406 size = RoundUp(size, pagesize);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Ddebugallocation.cc1271 static intptr_t RoundUp(intptr_t value, intptr_t alignment) { function
1291 p = reinterpret_cast<void *>(RoundUp(orig_p + data_offset, alignment));
1394 size = RoundUp(size, pagesize);
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h609 /*! @function RoundUp
614 #define RoundUp( X, Y ) ( ( X ) + ( ( Y ) - ( ( X ) % ( Y ) ) ) ) macro

Completed in 1124 milliseconds