Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 75) sorted by relevance

123

/system/libbase/include/android-base/
Dlogging.h301 #define CHECK_EQ(x, y) CHECK_OP(x, y, == ) argument
302 #define CHECK_NE(x, y) CHECK_OP(x, y, != ) argument
303 #define CHECK_LE(x, y) CHECK_OP(x, y, <= ) argument
304 #define CHECK_LT(x, y) CHECK_OP(x, y, < ) argument
305 #define CHECK_GE(x, y) CHECK_OP(x, y, >= ) argument
306 #define CHECK_GT(x, y) CHECK_OP(x, y, > ) argument
346 #define DCHECK_EQ(x, y) \ argument
348 #define DCHECK_NE(x, y) \ argument
350 #define DCHECK_LE(x, y) \ argument
352 #define DCHECK_LT(x, y) \ argument
[all …]
/system/core/healthd/
Dhealthd_draw.cpp128 int y = (screen_height_ - h) / 2; in draw_surface_centered() local
141 int HealthdDraw::draw_text(const GRFont* font, int x, int y, const char* str) { in draw_text()
154 const int length, int* x, int* y) { in determine_xy()
200 int x, y; in draw_clock() local
224 int x, y; in draw_percent() local
246 int y; in draw_unknown() local
/system/media/audio_utils/tests/
Dintrinsic_tests.cpp141 [](auto x, auto y) { return x + y; }, a, b); in TYPED_TEST()
150 [](auto x, auto y) { return x + y; }, a, b); in TYPED_TEST()
180 [](auto x, auto y) { return std::max(x, y); }, a, b); in TYPED_TEST()
189 [](auto x, auto y) { return std::max(x, y); }, a, b); in TYPED_TEST()
210 [](auto x, auto y) { return std::max(x, y); }, a, b); in TYPED_TEST()
220 [](auto x, auto y) { return std::min(x, y); }, a, b); in TYPED_TEST()
229 [](auto x, auto y) { return std::min(x, y); }, a, b); in TYPED_TEST()
250 [](auto x, auto y) { return std::min(x, y); }, a, b); in TYPED_TEST()
261 [](auto x, auto y, auto z) { return x + y * z; }, a, b, c); in TYPED_TEST()
271 [](auto x, auto y, auto z) { return x + y * z; }, a, b, c); in TYPED_TEST()
[all …]
/system/core/libsparse/
Dsparse_defs.h42 #define DIV_ROUND_UP(x, y) (((x) + (y)-1) / (y)) argument
43 #define ALIGN(x, y) ((y)*DIV_ROUND_UP((x), (y))) argument
44 #define ALIGN_DOWN(x, y) ((y) * ((x) / (y))) argument
/system/media/audio_utils/
Dfixedfft.cpp125 int32_t y = half(v[i + p]); in fixed_fft() local
136 int32_t y = mult(w, v[i + p]); in fixed_fft() local
157 int32_t y = z - (x ^ 0xFFFF); in fixed_fft_real() local
/system/core/libutils/include/utils/
DTrace.h27 #define _PASTE(x, y) x ## y argument
28 #define PASTE(x, y) _PASTE(x,y) argument
/system/testing/gtest_extras/gtestifier/
Dgtestifier.h28 #define GTESTIFIER_CONCAT(x, y) GTESTIFIER_CONCAT2(x, y) argument
29 #define GTESTIFIER_CONCAT2(x, y) x##y argument
/system/extras/libfec/include/fec/
Decc.h39 inline uint64_t fec_div_round_up(uint64_t x, uint64_t y) in fec_div_round_up()
45 inline uint64_t fec_round_up(uint64_t x, uint64_t y) in fec_round_up()
/system/teeui/libteeui/src/
Dbutton.cpp33 auto drawPixelBoundsEnforced = [&](uint32_t x, uint32_t y, Color color) -> Error { in draw()
42 for (int y = 0; y < box.h().count(); ++y) { in draw() local
73 for (int y = 0; y < cBounds.h().count(); ++y) { in draw() local
173 for (int64_t y = 0; y < intBBox.h().count(); ++y) { in draw() local
Dlabel.cpp45 makePixelDrawer([&, this](uint32_t x, uint32_t y, Color color) -> Error { in draw()
56 for (int y = 0; y < box.h().count(); ++y) { in draw() local
/system/teeui/tools/framebufferizer/src/com/android/framebufferizer/
DNativeRenderer.java27 …public static native int renderBuffer(int x, int y, int width, int height, int lineStride, int[] b… in renderBuffer()
31 public static native int onEvent(int x, int y, int event); in onEvent()
/system/unwinding/libunwindstack/tests/
DArmExidxDecodeTest.cpp703 for (size_t y = 0; y < 16; y++) { in TEST_P() local
762 for (size_t y = 0; y < 16; y++) { in TEST_P() local
783 for (size_t y = 2; y < 8; y++) { in TEST_P() local
803 for (size_t y = 0; y < 8; y++) { in TEST_P() local
1474 for (size_t y = 0; y < 256; y++) { in TEST_P() local
/system/unwinding/libunwindstack/include/unwindstack/
DLog.h23 #define __printflike(x, y) __attribute__((__format__(printf, x, y))) argument
/system/teeui/libteeui/example/
Dtouch_button_example.cpp92 EventResult GUIStateTouch::onEvent(uint32_t x, uint32_t y, uint32_t) { in onEvent() argument
142 uint32_t GUIStateTouch::renderUIIntoBuffer(uint32_t x, uint32_t y, uint32_t w, uint32_t h, in renderUIIntoBuffer()
175 [&fb](uint32_t x, uint32_t y, Color color) -> Error { return fb.drawPixel(x, y, color); }); in renderUIIntoBuffer()
Dphys_button_example.cpp105 uint32_t GUIStatePhysButtons::renderUIIntoBuffer(uint32_t x, uint32_t y, uint32_t w, uint32_t h, in renderUIIntoBuffer()
138 [&fb](uint32_t x, uint32_t y, Color color) -> Error { return fb.drawPixel(x, y, color); }); in renderUIIntoBuffer()
Dexample_utils.cpp39 Error FrameBuffer::drawPixel(uint32_t x, uint32_t y, uint32_t color) const { in drawPixel()
/system/extras/verity/
Dbuild_verity_tree_utils.h23 inline uint64_t div_round_up(uint64_t x, uint64_t y) { return (x + y - 1) / y; } in div_round_up()
/system/keymaster/key_blob_utils/
Docb.c151 #define xor_block(x, y) _mm_xor_si128(x, y) argument
153 #define unequal_blocks(x, y) (_mm_movemask_epi8(_mm_cmpeq_epi8(x, y)) != 0xffff) argument
189 #define xor_block(x, y) vec_xor(x, y) argument
191 #define unequal_blocks(x, y) vec_any_ne(x, y) argument
243 #define xor_block(x, y) veorq_s8(x, y) argument
277 static inline block xor_block(block x, block y) { in xor_block()
286 #define unequal_blocks(x, y) ((((x).l ^ (y).l) | ((x).r ^ (y).r)) != 0) argument
386 #define AES_set_encrypt_key(x, y, z) \ argument
391 #define AES_set_decrypt_key(x, y, z) \ argument
399 #define AES_set_encrypt_key(x, y, z) rijndaelKeySetupEnc((z)->rd_key, x, y) argument
[all …]
/system/update_engine/common/
Dutils.h383 constexpr uint64_t DivRoundUp(uint64_t x, uint64_t y) { in DivRoundUp()
388 constexpr uint64_t RoundUp(uint64_t x, uint64_t y) { in RoundUp()
658 #define TOKENPASTE1(x, y) x##y argument
659 #define TOKENPASTE2(x, y) TOKENPASTE1(x, y) argument
/system/chre/util/tests/
Draw_storage_test.cc34 int y = 2; in TEST() member
/system/media/camera/docs/
Dplots.py14 def doc_plot(fig, x, y): argument
38 def doc_coeff(x,y): argument
/system/memory/libmemtrack/
Dmemtrack_test.cpp30 #define DIV_ROUND_UP(x, y) (((x) + (y)-1) / (y)) argument
/system/media/audio_utils/include/audio_utils/
DStatistics.h64 const T y = rhs - lhs.mCorrection; member
/system/extras/ext4_utils/include/ext4_utils/
Dext4_utils.h48 #define DIV_ROUND_UP(x, y) (((x) + (y)-1) / (y)) argument
49 #define EXT4_ALIGN(x, y) ((y)*DIV_ROUND_UP((x), (y))) argument
/system/extras/slideshow/
Dslideshow.cpp61 int w, h, x, y; in draw() local

123