Searched refs:left (Results 326 - 350 of 688) sorted by relevance

<<11121314151617181920>>

/linux-master/sound/drivers/vx/
H A Dvx_mixer.c88 * @left: left output level, 0 = mute
91 static void vx_set_analog_output_level(struct vx_core *chip, int codec, int left, int right) argument
93 left = chip->hw->output_level_max - left;
97 chip->ops->akm_write(chip, XX_CODEC_LEVEL_LEFT_REGISTER, left);
101 vx_set_codec_reg(chip, codec, XX_CODEC_LEVEL_LEFT_REGISTER, left);
/linux-master/drivers/staging/greybus/
H A Dsdio.c362 size_t left, len; local
372 left = data->blksz * data->blocks;
374 while (left) {
384 len = min(left, host->data_max);
398 left -= len;
/linux-master/drivers/media/test-drivers/vivid/
H A Dvivid-vid-common.c907 if (r->left < 0)
908 r->left = 0;
909 /* sanitize left and top in case someone passes ~0 as the value */
910 r->left &= 0xfffe;
912 if (r->left + w > MAX_WIDTH)
913 r->left = MAX_WIDTH - w;
/linux-master/drivers/media/platform/renesas/vsp1/
H A Dvsp1_drm.c137 format.format.width = crop->width + crop->left;
163 __func__, sel.r.left, sel.r.top, sel.r.width, sel.r.height,
217 __func__, sel.r.left, sel.r.top, sel.r.width, sel.r.height,
843 cfg->src.left, cfg->src.top, cfg->src.width, cfg->src.height,
844 cfg->dst.left, cfg->dst.top, cfg->dst.width, cfg->dst.height,
/linux-master/drivers/media/i2c/
H A Dimx296.c525 imx296_write(sensor, IMX296_FID0_ROIPH1, crop->left, &ret);
741 sel->r.left = 0;
769 rect.left = clamp(ALIGN(sel->r.left, 4), 0,
779 IMX296_PIXEL_ARRAY_WIDTH - rect.left);
H A Dov9282.c382 .left = OV9282_PIXEL_ARRAY_LEFT,
405 .left = OV9282_PIXEL_ARRAY_LEFT,
424 .left = OV9282_PIXEL_ARRAY_LEFT,
931 sel->r.left = 0;
940 sel->r.left = OV9282_PIXEL_ARRAY_LEFT;
H A Dimx219.c616 crop->left - IMX219_PIXEL_ARRAY_LEFT, &ret);
618 crop->left - IMX219_PIXEL_ARRAY_LEFT + crop->width - 1, &ret);
841 crop->left = (IMX219_NATIVE_WIDTH - crop->width) / 2;
888 sel->r.left = 0;
897 sel->r.left = IMX219_PIXEL_ARRAY_LEFT;
H A Dst-vgxy61.c282 .left = 0,
293 .left = 92,
304 .left = 92,
315 .left = 92,
329 .left = 0,
340 .left = 12,
351 .left = 332,
362 .left = 332,
373 .left = 332,
668 sel->r.left
[all...]
H A Dalvium-csi2.c1725 /* alvium don't accept negative crop left/top */
1726 crop->left = clamp((u32)max(0, crop->left), alvium->min_offx,
1739 ret = alvium_set_img_offx(alvium, crop->left);
1837 .left = mode->crop.left,
1872 /* Adjust left and top to prevent roll over sensor area */
1873 crop->left = clamp((u32)crop->left, (u32)0,
1914 /* alvium don't accept negative crop left/to
[all...]
/linux-master/drivers/media/platform/rockchip/rga/
H A Drga.c347 .crop.left = 0,
536 frm->crop.left = 0;
598 s->r.left = 0;
644 if (s->r.top < 0 || s->r.left < 0) {
646 "doesn't support negative values for top & left.\n");
650 if (s->r.left + s->r.width > f->width ||
/linux-master/drivers/net/ethernet/sfc/
H A Dnet_driver.h694 static inline bool efx_link_state_equal(const struct efx_link_state *left, argument
697 return left->up == right->up && left->fd == right->fd &&
698 left->fc == right->fc && left->speed == right->speed;
/linux-master/drivers/net/ethernet/sfc/siena/
H A Dnet_driver.h137 * @index and @entries are left as 0.
652 static inline bool efx_link_state_equal(const struct efx_link_state *left, argument
655 return left->up == right->up && left->fd == right->fd &&
656 left->fc == right->fc && left->speed == right->speed;
/linux-master/drivers/net/
H A Dnetconsole.c1153 int frag, left; local
1174 for (left = len; left;) {
1175 frag = min(left, MAX_PRINT_CHUNK);
1178 left -= frag;
1331 * created from the boot/module option are left, so remove and
/linux-master/drivers/scsi/cxlflash/
H A Dvlun.c197 pr_debug("%s: No space left on LUN: lun_id=%016llx\n",
332 * ba_space() - returns the amount of free space left in the block allocator
428 int left = nblks; local
443 while (left > 0) {
448 put_unaligned_be32(ws_limit < left ? ws_limit : left,
472 left -= ws_limit;
/linux-master/drivers/media/platform/mediatek/vcodec/decoder/
H A Dmtk_vcodec_dec.c358 s->r.left = 0;
364 s->r.left = 0;
372 s->r.left = 0;
384 s->r.left = 0;
404 s->r.left = 0;
/linux-master/tools/power/pm-graph/
H A Dsleepgraph.py1301 left = finish - datetime.now()
1302 left -= timedelta(microseconds=left.microseconds)
1304 left = timedelta(seconds=((self.multitest['count'] - idx) * int(avg)))
1305 pprint('TEST (%s) START - Avg Duration %.1fs, Time left %s' % \
1306 (id, avg, str(left)))
1485 'DISKFULL': r'.*\bNo space left on device.*',
1769 def trimTimeVal(self, t, t0, dT, left):
1770 if left:
1784 def trimTime(self, t0, dT, left)
[all...]
/linux-master/arch/arm/lib/
H A Dlib1funcs.S54 @ Initially shift the divisor left 3 bits if possible,
56 @ at the left end of each 4 bit nibbles in the division loop
192 @ Either 1, 2 or 3 comparison/subtractions are left.
/linux-master/drivers/media/platform/samsung/s3c-camif/
H A Dcamif-regs.c135 /* Note: s3c244x requirement: left = f_width - rect.width / 2 */
138 cfg |= (crop->left << 16) | crop->top;
139 if (crop->left != 0 || crop->top != 0)
144 hoff2 = mf->width - crop->width - crop->left;
/linux-master/arch/alpha/lib/
H A Dev6-memset.S148 * $3 - number quads left to go
156 * through the loop, and if there are less than two trips left, the target
198 subq $3,1,$3 # E : Decrement number quads left
326 * $3 - number quads left to go
334 * through the loop, and if there are less than two trips left, the target
376 subq $3,1,$3 # E : Decrement number quads left
514 * $3 - number quads left to go
522 * through the loop, and if there are less than two trips left, the target
564 subq $3,1,$3 # E : Decrement number quads left
/linux-master/arch/mips/cavium-octeon/
H A Docteon-memcpy.S182 # This is where we loop if there is more than 128 bytes left
228 # Jump here if there are less than 16*NBYTES left.
256 # Jump here if there are less than 8*NBYTES left.
275 # Jump here if there are less than 4*NBYTES left. This means
/linux-master/drivers/mfd/
H A Dqcom_rpm.c455 int left; local
482 left = wait_for_completion_timeout(&rpm->ack, RPM_REQUEST_TIMEOUT);
483 if (!left)
/linux-master/drivers/soc/qcom/
H A Dpmic_glink_altmode.c110 unsigned long left; local
131 left = wait_for_completion_timeout(&altmode->pan_ack, 5 * HZ);
132 if (!left) {
/linux-master/arch/mips/kernel/
H A Dpm-cps.c36 * VPE left it. Returns garbage if coupled_coherence is zero or this is not
108 unsigned online, left; local
164 left = entry(online, nc_core_ready_count);
180 if (coupled_coherence && (state == CPS_PM_NC_WAIT) && (left == online))
/linux-master/drivers/gpu/drm/gud/
H A Dgud_connector.c302 if (old_state->tv.margins.left != new_state->tv.margins.left ||
449 return &state->margins.left;
/linux-master/drivers/gpu/drm/
H A Ddrm_panic.c332 * @dmap: destination iosys_map, pointing to the top left corner of the rectangle
392 int left = 0; local
399 left = (drm_rect_width(clip) - (line_len * font->width)) / 2;
403 (clip->x1 + left) * px_width);

Completed in 290 milliseconds

<<11121314151617181920>>