Searched refs:left (Results 251 - 275 of 682) sorted by relevance

<<11121314151617181920>>

/linux-master/drivers/net/wireless/ath/ath11k/
H A Dreg.c116 int i, ret, left; local
119 left = wait_for_completion_timeout(&ar->completed_11d_scan,
121 if (!left) {
127 "11d scan wait left time %d\n", left);
133 left = wait_for_completion_timeout(&ar->scan.completed,
135 if (!left)
140 "hw scan wait left time %d\n", left);
/linux-master/arch/x86/xen/
H A Dsetup.c297 unsigned long left = size; local
307 chunk = (left < REMAP_SIZE) ? left : REMAP_SIZE;
326 left -= chunk;
357 unsigned long left = n - i; local
358 unsigned long size = left;
374 cur_pfn + left, nr_pages);
/linux-master/scripts/kconfig/
H A Dmenu.c90 e->left.expr = rewrite_m(e->left.expr);
94 e->left.expr = rewrite_m(e->left.expr);
99 if (e->left.sym == &symbol_mod)
275 if (!menu_validate_number(sym, prop->expr->left.sym) ||
519 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr)
H A Dsymbol.c142 range_sym = prop->expr->left.sym;
530 for (e = prop->expr; e; e = e->left.expr) {
624 return val >= sym_get_range_val(prop->expr->left.sym, 10) &&
633 return val >= sym_get_range_val(prop->expr->left.sym, 16) &&
1099 sym = sym_check_expr_deps(e->left.expr);
1104 return sym_check_expr_deps(e->left.expr);
1111 sym = sym_check_deps(e->left.sym);
1116 return sym_check_deps(e->left.sym);
1245 return prop->expr->left.sym;
/linux-master/tools/power/pm-graph/
H A Dbootgraph.py521 html_srccall = '<div id={6} title="{5}" class="srccall" style="left:{1}%;top:{2}px;height:{3}px;width:{4}%;line-height:{3}px;">{0}</div>\n'
560 left = '%.3f' % (((phase['start']-t0)*100.0)/tTotal)
562 devtl.html += devtl.html_phase.format(left, width, \
580 left = '%.6f' % (((dev['start']-t0)*100)/tTotal)
584 devname+length+phase+'_mode', left, top, '%.3f'%height,
596 left = '%f' % (((l.time-t0)*100)/tTotal)
599 devtl.html += html_srccall.format(l.name, left,
606 left = '%f' % (((cg.start-t0)*100)/tTotal)
611 devtl.html += html_srccall.format(cg.name, left,
649 .fstat td {text-align:left;widt
[all...]
/linux-master/drivers/media/pci/ivtv/
H A Divtvfb.c75 /* Why upper, left, xres, yres, depth, laced ? To match terminology used
77 Why start at 1 for left & upper coordinate ? Because X doesn't allow 0 */
252 if (ivtv_window->left + ivtv_window->width > IVTV_OSD_MAX_WIDTH) {
254 ivtv_window->left, ivtv_window->width);
255 ivtv_window->left = IVTV_OSD_MAX_WIDTH - ivtv_window->width;
259 write_reg((ivtv_window->top << 16) | ivtv_window->left, 0x02a04);
262 write_reg(((ivtv_window->top+ivtv_window->height) << 16) | (ivtv_window->left+ivtv_window->width), 0x02a08);
267 itv->yuv_info.osd_x_offset = ivtv_window->left;
585 ivtv_window.left = var->left_margin - 1;
769 /* Check the left
[all...]
/linux-master/net/atm/
H A Dproc.c8 * Evaluating the efficiency of the whole thing if left as an exercise to
121 loff_t left = *pos; local
125 return left ? vcc_walk(seq, left) : SEQ_START_TOKEN;
/linux-master/drivers/media/rc/
H A Dir-mce_kbd-decoder.c187 bool left = scancode & 0x20; local
200 x, y, left ? "L" : "", right ? "R" : "");
205 input_report_key(dev->input_dev, BTN_LEFT, left);
/linux-master/arch/arm/mach-omap1/
H A Dams-delta-fiq-handler.S99 bics r13, r13, r11 @ clear masked - any left?
125 bics r13, r13, r11 @ clear masked - any left?
175 mov r10, r10, lsl #1 @ shift mask left
/linux-master/arch/mips/kernel/
H A Dperf_event_mipsxx.c413 u64 left = local64_read(&hwc->period_left); local
417 if (unlikely((left + period) & (1ULL << 63))) {
418 /* left underflowed by more than period. */
419 left = period;
420 local64_set(&hwc->period_left, left);
423 } else if (unlikely((left + period) <= period)) {
424 /* left underflowed by less than period. */
425 left += period;
426 local64_set(&hwc->period_left, left);
431 if (left > mipspm
[all...]
/linux-master/net/smc/
H A Dsmc_rx.c189 int size, left = len; local
193 size = min_t(int, PAGE_SIZE - offset, left);
201 left -= size;
448 /* subsequent splice() calls pick up where previous left */
/linux-master/drivers/media/platform/mediatek/vcodec/decoder/vdec/
H A Dvdec_h264_if.c253 cr->left = inst->vsi->crop.left;
258 mtk_vdec_debug(inst->ctx, "l=%d, t=%d, w=%d, h=%d", cr->left, cr->top,
H A Dvdec_h264_req_if.c256 cr->left = inst->vsi_ctx.crop.left;
262 cr->left, cr->top, cr->width, cr->height);
/linux-master/drivers/media/platform/ti/omap3isp/
H A Disppreview.c89 * YUV conversion. They thus can crop one pixel on the left and one pixel on the
92 * the image to avoid changing the bayer pattern. The left margin is thus set to
1066 unsigned int sph = prev->crop.left;
1067 unsigned int eph = prev->crop.left + prev->crop.width - 1;
1822 unsigned int left = PREV_MARGIN_LEFT; local
1828 * be cropped from the left and right sides of the image. As we don't
1829 * know which filters will be enabled, increase the left and right
1833 left += 2;
1843 left += 2;
1849 /* Restrict left/to
[all...]
/linux-master/drivers/tty/
H A Dtty_buffer.c266 size_t left = (b->flags ? 1 : 2) * b->size - b->used; local
269 if (!change && left >= size)
275 return change ? 0 : left;
/linux-master/tools/testing/selftests/exec/
H A Dexecveat.c135 static char *concat(const char *left, const char *right) argument
137 char *result = malloc(strlen(left) + strlen(right) + 1);
139 strcpy(result, left);
/linux-master/drivers/gpu/drm/i915/
H A Di915_vma.c977 unsigned int left; local
995 left = (dst_stride - height) * I915_GTT_PAGE_SIZE;
997 if (!left)
1007 sg_set_page(sg, NULL, left, 0);
1009 sg_dma_len(sg) = left;
1095 unsigned int left = width * I915_GTT_PAGE_SIZE; local
1097 while (left) {
1109 length = min(left, length);
1119 left -= length;
1124 left
[all...]
/linux-master/drivers/gpu/drm/qxl/
H A Dqxl_ioctl.c298 struct qxl_rect area = {.left = update_area->left,
307 if (update_area->left >= update_area->right ||
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dsge.c218 * the size because one descriptor needs to be left unpopulated, otherwise
1094 int left = (void *)q->stat - pos; local
1097 if (likely(skb->len <= left)) {
1104 skb_copy_bits(skb, 0, pos, left);
1105 skb_copy_bits(skb, left, q->desc, skb->len - left);
1106 pos = (void *)q->desc + (skb->len - left);
1121 int left = (void *)q->stat - pos; local
1123 if (likely(length <= left)) {
1127 memcpy(pos, skb->data, left);
1494 int len, qidx, credits, ret, left; local
2262 int left, ret = 0; local
2941 unsigned int left; variable
3178 int left = (void *)q->stat - pos; local
[all...]
/linux-master/drivers/input/mouse/
H A Dsynaptics.h156 unsigned int left:1; member in struct:synaptics_hw_state
H A Dalps.h225 * @left: Left touchpad button is active.
244 unsigned int left:1; member in struct:alps_fields
H A Dcypress_ps2.h146 unsigned int left:1; member in struct:cytp_report_data
H A Dcypress_ps2.c478 report_data->left = (header_byte & BTN_LEFT_BIT) ? 1 : 0;
488 report_data->left = 0;
504 psmouse_dbg(psmouse, "left = %d\n", report_data->left);
551 input_report_key(input, BTN_LEFT, report_data.left);
/linux-master/drivers/gpu/drm/amd/display/dc/inc/hw/
H A Dtransform.h135 int left; member in struct:overscan_info
/linux-master/drivers/gpu/drm/display/
H A Ddrm_hdmi_helper.c160 frame->left_bar = conn_state->tv.margins.left;

Completed in 265 milliseconds

<<11121314151617181920>>