Home
last modified time | relevance | path

Searched refs:left (Results 2051 - 2075 of 3984) sorted by relevance

1...<<81828384858687888990>>...160

/foundation/arkui/ui_lite/frameworks/components/
H A Dui_chart.cpp727 int64_t left = a * e - b * d; in GetLineCrossPoint() local
729 if (left == 0) { in GetLineCrossPoint()
732 cross.x = static_cast<int16_t>(right / left); in GetLineCrossPoint()
733 left = b * d - a * e; in GetLineCrossPoint()
735 if (left == 0) { in GetLineCrossPoint()
738 cross.y = static_cast<int16_t>(right / left); in GetLineCrossPoint()
/foundation/arkui/ace_engine/test/unittest/interfaces/
H A Dform_render_test.cpp405 int32_t left = 50; in HWTEST_F() local
409 EXPECT_EQ(renderDelegate->OnGetRectRelativeToWindow(top, left), ERR_INVALID_DATA); in HWTEST_F()
411 EXPECT_EQ(renderDelegate->OnGetRectRelativeToWindow(top, left), ERR_OK); in HWTEST_F()
584 int32_t left = 0; in HWTEST_F() local
585 formRenderer->GetRectRelativeToWindow(top, left); in HWTEST_F()
588 formRenderer->GetRectRelativeToWindow(top, left); in HWTEST_F()
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/sink/multichannel/
H A Dmultichannel_audio_renderer_sink.cpp83 int32_t SetVolume(float left, float right) override;
84 int32_t GetVolume(float &left, float &right) override;
635 int32_t MultiChannelRendererSinkInner::SetVolume(float left, float right) in SetVolume() argument
645 leftVolume_ = left; in SetVolume()
663 int32_t MultiChannelRendererSinkInner::GetVolume(float &left, float &right) in GetVolume() argument
665 left = leftVolume_; in GetVolume()
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/sink/bluetooth/
H A Dbluetooth_renderer_sink.cpp100 int32_t SetVolume(float left, float right) override;
101 int32_t GetVolume(float &left, float &right) override;
735 int32_t BluetoothRendererSinkInner::SetVolume(float left, float right) in SetVolume() argument
742 leftVolume_ = left; in SetVolume()
760 int32_t BluetoothRendererSinkInner::GetVolume(float &left, float &right) in GetVolume() argument
762 left = leftVolume_; in GetVolume()
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/sink/remote/
H A Dremote_audio_renderer_sink.cpp105 int32_t SetVolume(float left, float right) override;
106 int32_t GetVolume(float &left, float &right) override;
650 int32_t RemoteAudioRendererSinkInner::SetVolume(float left, float right) in SetVolume() argument
652 leftVolume_ = left; in SetVolume()
671 int32_t RemoteAudioRendererSinkInner::GetVolume(float &left, float &right) in GetVolume() argument
673 left = leftVolume_; in GetVolume()
/kernel/linux/linux-5.10/drivers/media/i2c/
H A Dmt9m111.c404 ret = reg_write(COLUMN_START, rect->left); in mt9m111_setup_geometry()
424 __func__, code, rect->width, rect->height, rect->left, rect->top, in mt9m111_setup_geometry()
475 rect.left = clamp(rect.left, MT9M111_MIN_DARK_COLS, in mt9m111_set_selection()
507 sel->r.left = MT9M111_MIN_DARK_COLS; in mt9m111_get_selection()
1330 mt9m111->rect.left = MT9M111_MIN_DARK_COLS; in mt9m111_probe()
H A Dmt9v032.c403 ret = regmap_write(map, MT9V032_COLUMN_START, crop->left); in mt9v032_s_stream()
566 rect.left = clamp(ALIGN(sel->r.left + 1, 2) - 1, in mt9v032_set_selection()
580 rect.width, MT9V032_PIXEL_ARRAY_WIDTH - rect.left); in mt9v032_set_selection()
926 crop->left = MT9V032_COLUMN_START_DEF; in mt9v032_open()
1142 mt9v032->crop.left = MT9V032_COLUMN_START_DEF; in mt9v032_probe()
H A Dmt9p031.c401 ret = mt9p031_write(client, MT9P031_COLUMN_START, crop->left); in mt9p031_set_params()
635 rect.left = clamp(ALIGN(sel->r.left, 2), MT9P031_COLUMN_START_MIN, in mt9p031_set_selection()
647 MT9P031_PIXEL_ARRAY_WIDTH - rect.left); in mt9p031_set_selection()
973 crop->left = MT9P031_COLUMN_START_DEF; in mt9p031_open()
1147 mt9p031->crop.left = MT9P031_COLUMN_START_DEF; in mt9p031_probe()
/kernel/linux/linux-5.10/drivers/mmc/host/
H A Dmeson-gx-mmc.c761 unsigned int len, left; in meson_mmc_copy_buffer() local
765 left = len; in meson_mmc_copy_buffer()
772 left -= 4; in meson_mmc_copy_buffer()
773 } while (left); in meson_mmc_copy_buffer()
779 left -= 4; in meson_mmc_copy_buffer()
780 } while (left); in meson_mmc_copy_buffer()
/kernel/linux/linux-5.10/drivers/net/wireless/intersil/p54/
H A Dp54usb.c504 unsigned int left, remains, block_size; in p54u_upload_firmware_3887() local
516 left = block_size = min_t(size_t, P54U_FW_BLOCK, priv->fw->size); in p54u_upload_firmware_3887()
518 left -= strlen(p54u_firmware_upload_3887); in p54u_upload_firmware_3887()
530 left -= sizeof(*hdr); in p54u_upload_firmware_3887()
534 while (left--) { in p54u_upload_firmware_3887()
566 left = block_size = min((unsigned int)P54U_FW_BLOCK, remains); in p54u_upload_firmware_3887()
/kernel/linux/linux-5.10/drivers/gpu/drm/vc4/
H A Dvc4_plane.c289 unsigned int left, right, top, bottom, adjhdisplay, adjvdisplay; in vc4_plane_margins_adj() local
295 vc4_crtc_get_margins(crtc_state, &left, &right, &top, &bottom); in vc4_plane_margins_adj()
296 if (!left && !right && !top && !bottom) in vc4_plane_margins_adj()
299 if (left + right >= crtc_state->mode.hdisplay || in vc4_plane_margins_adj()
303 adjhdisplay = crtc_state->mode.hdisplay - (left + right); in vc4_plane_margins_adj()
307 vc4_pstate->crtc_x += left; in vc4_plane_margins_adj()
750 /* Rows of tiles alternate left-to-right and right-to-left. */ in vc4_plane_mode_set()
/kernel/linux/linux-6.6/drivers/mmc/host/
H A Dmeson-gx-mmc.c762 unsigned int len, left; in meson_mmc_copy_buffer() local
766 left = len; in meson_mmc_copy_buffer()
773 left -= 4; in meson_mmc_copy_buffer()
774 } while (left); in meson_mmc_copy_buffer()
780 left -= 4; in meson_mmc_copy_buffer()
781 } while (left); in meson_mmc_copy_buffer()
/kernel/linux/linux-6.6/drivers/media/i2c/
H A Dmt9m111.c403 ret = reg_write(COLUMN_START, rect->left); in mt9m111_setup_geometry()
423 __func__, code, rect->width, rect->height, rect->left, rect->top, in mt9m111_setup_geometry()
474 rect.left = clamp(rect.left, MT9M111_MIN_DARK_COLS, in mt9m111_set_selection()
506 sel->r.left = MT9M111_MIN_DARK_COLS; in mt9m111_get_selection()
1331 mt9m111->rect.left = MT9M111_MIN_DARK_COLS; in mt9m111_probe()
H A Dmt9p031.c416 ret = mt9p031_write(client, MT9P031_COLUMN_START, crop->left); in mt9p031_set_params()
634 sel->r.left = MT9P031_COLUMN_START_MIN; in mt9p031_get_selection()
665 rect.left = clamp(ALIGN(sel->r.left, 2), MT9P031_COLUMN_START_MIN, in mt9p031_set_selection()
677 MT9P031_PIXEL_ARRAY_WIDTH - rect.left); in mt9p031_set_selection()
711 crop->left = MT9P031_COLUMN_START_DEF; in mt9p031_init_cfg()
H A Dmt9v032.c407 ret = regmap_write(map, MT9V032_COLUMN_START, crop->left); in mt9v032_s_stream()
572 rect.left = clamp(ALIGN(sel->r.left + 1, 2) - 1, in mt9v032_set_selection()
586 rect.width, MT9V032_PIXEL_ARRAY_WIDTH - rect.left); in mt9v032_set_selection()
934 crop->left = MT9V032_COLUMN_START_DEF; in mt9v032_open()
1150 mt9v032->crop.left = MT9V032_COLUMN_START_DEF; in mt9v032_probe()
H A Dhi556.c510 .left = HI556_PIXEL_ARRAY_LEFT,
528 .left = HI556_PIXEL_ARRAY_LEFT,
546 .left = HI556_PIXEL_ARRAY_LEFT,
905 sel->r.left = 0; in hi556_get_selection()
914 sel->r.left = HI556_PIXEL_ARRAY_LEFT; in hi556_get_selection()
1148 try_crop->left = HI556_PIXEL_ARRAY_LEFT; in hi556_open()
H A Dov2680.c82 /* Pre-div configurable through reg 0x3080, left at its default of 0x02 : 1/2 */
173 .left = OV2680_ACTIVE_START_LEFT,
357 sensor->mode.h_start = (sensor->mode.crop.left + in ov2680_calc_mode()
690 sel->r.left = 0; in ov2680_get_selection()
721 rect.left = clamp_val(ALIGN(sel->r.left, 2), in ov2680_set_selection()
732 OV2680_NATIVE_WIDTH - rect.left); in ov2680_set_selection()
1165 * disabled the chip is left on and streaming will work. in ov2680_probe()
/kernel/linux/linux-6.6/block/
H A Dbio.c1242 ssize_t size, left; in __bio_iov_iter_get_pages() local
1284 for (left = size, i = 0; left > 0; left -= len, i++) { in __bio_iov_iter_get_pages()
1287 len = min_t(size_t, PAGE_SIZE - offset, left); in __bio_iov_iter_get_pages()
1299 iov_iter_revert(iter, left); in __bio_iov_iter_get_pages()
/kernel/linux/linux-6.6/drivers/net/wireless/intersil/p54/
H A Dp54usb.c504 unsigned int left, remains, block_size; in p54u_upload_firmware_3887() local
516 left = block_size = min_t(size_t, P54U_FW_BLOCK, priv->fw->size); in p54u_upload_firmware_3887()
518 left -= strlen(p54u_firmware_upload_3887); in p54u_upload_firmware_3887()
530 left -= sizeof(*hdr); in p54u_upload_firmware_3887()
534 while (left--) { in p54u_upload_firmware_3887()
566 left = block_size = min((unsigned int)P54U_FW_BLOCK, remains); in p54u_upload_firmware_3887()
/kernel/linux/linux-6.6/drivers/i3c/master/mipi-i3c-hci/
H A Dpio.c257 DBG("now %d left %d", nr_words * 4, xfer->data_left); in hci_pio_do_rx()
281 DBG("now %d left %d", nr_words * 4, xfer->data_left); in hci_pio_do_trailing_rx()
324 DBG("now %d left %d", nr_words * 4, xfer->data_left); in hci_pio_do_tx()
412 unsigned int room, left, chunk, bytes_to_move; in hci_pio_push_to_next_rx() local
422 left = DIV_ROUND_UP(xfer->data_left, 4); in hci_pio_push_to_next_rx()
424 if (chunk > left) { in hci_pio_push_to_next_rx()
425 hci_pio_push_to_next_rx(hci, xfer, chunk - left); in hci_pio_push_to_next_rx()
426 left = chunk; in hci_pio_push_to_next_rx()
427 xfer->data_left = left * 4; in hci_pio_push_to_next_rx()
776 DBG("now %d left in hci_pio_get_ibi_segment()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvc1dsp.c113 static void vc1_h_s_overlap_c(int16_t *left, int16_t *right, ptrdiff_t left_stride, ptrdiff_t right_stride, int flags) in vc1_h_s_overlap_c() argument
121 a = left[6]; in vc1_h_s_overlap_c()
122 b = left[7]; in vc1_h_s_overlap_c()
128 left[6] = ((a * 8) - d1 + rnd1) >> 3; in vc1_h_s_overlap_c()
129 left[7] = ((b * 8) - d2 + rnd2) >> 3; in vc1_h_s_overlap_c()
134 left += left_stride; in vc1_h_s_overlap_c()
/third_party/backends/backend/
H A Ds9036.c194 0x80, /* data type 80 == read time left */ in wait_ready()
219 /* left is the amount of seconds left till the scanner is in wait_ready()
221 int left = result[2] * 256 + result[3]; in wait_ready() local
223 DBG (1, "wait_ready() : %d left...\n", left); in wait_ready()
225 if (!left) in wait_ready()
228 else if (left < 200) in wait_ready()
229 usleep (left * 5000); in wait_ready()
231 sleep (left / 20 in wait_ready()
[all...]
/third_party/cups-filters/filter/pdftopdf/
H A Dpdftopdf.cc204 // ['center','top','left','right','top-left','top-right','bottom','bottom-left','bottom-right'] in parsePosition()
225 if (strcasecmp(value,"left")==0) { in parsePosition()
398 param.page.left=pagesize->left; in getParameters()
419 param.page.right=param.page.left=18.0; in getParameters()
435 optGetFloat("page-left",num_options,options,&tmp.left); in getParameters()
442 if ((val = cupsGetOption("media-left in getParameters()
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dalphaindex.cpp52 collatorComparator(const void *context, const void *left, const void *right);
55 recordCompareFn(const void *context, const void *left, const void *right);
943 collatorComparator(const void *context, const void *left, const void *right) { in collatorComparator() argument
944 const UElement *leftElement = static_cast<const UElement *>(left); in collatorComparator()
968 recordCompareFn(const void *context, const void *left, const void *right) { in recordCompareFn() argument
969 const UElement *leftElement = static_cast<const UElement *>(left); in recordCompareFn()
/third_party/node/deps/icu-small/source/i18n/
H A Dalphaindex.cpp52 collatorComparator(const void *context, const void *left, const void *right);
55 recordCompareFn(const void *context, const void *left, const void *right);
943 collatorComparator(const void *context, const void *left, const void *right) { in collatorComparator() argument
944 const UElement *leftElement = static_cast<const UElement *>(left); in collatorComparator()
968 recordCompareFn(const void *context, const void *left, const void *right) { in recordCompareFn() argument
969 const UElement *leftElement = static_cast<const UElement *>(left); in recordCompareFn()

Completed in 42 milliseconds

1...<<81828384858687888990>>...160