Home
last modified time | relevance | path

Searched refs:left (Results 1326 - 1350 of 3207) sorted by relevance

1...<<51525354555657585960>>...129

/third_party/nghttp2/src/
H A Dshrpx_log.cc302 auto left = wleft(); in operator <<() local
303 auto rv = snprintf(reinterpret_cast<char *>(last_), left, "%.9f", n); in operator <<()
304 if (rv > static_cast<int>(left)) { in operator <<()
320 auto left = wleft(); in operator <<() local
321 auto rv = snprintf(reinterpret_cast<char *>(last_), left, "%.9Lf", n); in operator <<()
322 if (rv > static_cast<int>(left)) { in operator <<()
/third_party/python/Lib/
H A Dftplib.py859 left = resp.find('(')
860 if left < 0: raise error_proto(resp)
861 right = resp.find(')', left + 1)
864 if resp[left + 1] != resp[right - 1]:
866 parts = resp[left + 1:right].split(resp[left+1])
/third_party/skia/third_party/externals/libpng/contrib/visupng/
H A DVisualPng.c468 wChild = rChild.right - rChild.left; in CenterAbout()
473 wParent = rParent.right - rParent.left; in CenterAbout()
483 rWorkArea.left = rWorkArea.top = 0; in CenterAbout()
489 xNew = rParent.left + ((wParent - wChild) /2); in CenterAbout()
490 if (xNew < rWorkArea.left) { in CenterAbout()
491 xNew = rWorkArea.left; in CenterAbout()
/kernel/linux/linux-5.10/drivers/atm/
H A Dfore200e.c2714 int i, len, left = *pos; in fore200e_proc_read() local
2717 if (!left--) { in fore200e_proc_read()
2745 if (!left--) in fore200e_proc_read()
2756 if (!left--) { in fore200e_proc_read()
2771 if (!left--) { in fore200e_proc_read()
2820 if (!left--) { in fore200e_proc_read()
2832 if (!left--) in fore200e_proc_read()
2842 if (!left--) in fore200e_proc_read()
2860 if (!left--) in fore200e_proc_read()
2876 if (!left in fore200e_proc_read()
[all...]
/kernel/linux/linux-6.6/drivers/atm/
H A Dfore200e.c2712 int i, len, left = *pos; in fore200e_proc_read() local
2715 if (!left--) { in fore200e_proc_read()
2743 if (!left--) in fore200e_proc_read()
2754 if (!left--) { in fore200e_proc_read()
2769 if (!left--) { in fore200e_proc_read()
2818 if (!left--) { in fore200e_proc_read()
2830 if (!left--) in fore200e_proc_read()
2840 if (!left--) in fore200e_proc_read()
2858 if (!left--) in fore200e_proc_read()
2874 if (!left in fore200e_proc_read()
[all...]
/kernel/linux/linux-5.10/tools/power/pm-graph/
H A Dsleepgraph.py1187 left = finish - datetime.now()
1188 left -= timedelta(microseconds=left.microseconds)
1190 left = timedelta(seconds=((self.multitest['count'] - idx) * int(avg)))
1191 pprint('TEST (%s) START - Avg Duration %.1fs, Time left %s' % \
1192 (id, avg, str(left)))
1305 'DISKFULL': r'.*\bNo space left on device.*',
1586 def trimTimeVal(self, t, t0, dT, left):
1587 if left:
1601 def trimTime(self, t0, dT, left)
[all...]
/kernel/linux/linux-5.10/tools/lib/traceevent/
H A Devent-parse.c912 free_arg(arg->op.left); in free_arg()
1791 struct tep_print_arg *arg, *left, *right; in process_cond() local
1796 left = alloc_arg(); in process_cond()
1799 if (!arg || !left || !right) { in process_cond()
1802 free_arg(left); in process_cond()
1808 arg->op.left = left; in process_cond()
1812 type = process_arg(event, left, &token); in process_cond()
1820 type = process_op(event, left, &token); in process_cond()
1937 if (!arg->op.left || ar in set_op_prio()
1949 struct tep_print_arg *left, *right = NULL; process_op() local
2325 long long left, right; arg_num_eval() local
3637 unsigned long long left, right; eval_num_arg() local
[all...]
/kernel/linux/linux-6.6/drivers/media/i2c/
H A Dov5693.c325 .left = OV5693_ACTIVE_START_LEFT,
560 cci_write(ov5693->regmap, OV5693_CROP_START_X_REG, mode->crop.left, in ov5693_mode_configure()
572 mode->crop.left + mode->crop.width, &ret); in ov5693_mode_configure()
903 sel->r.left = 0; in ov5693_get_selection()
910 sel->r.left = OV5693_ACTIVE_START_LEFT; in ov5693_get_selection()
938 rect.left = clamp(ALIGN(sel->r.left, 2), OV5693_NATIVE_START_LEFT, in ov5693_set_selection()
949 OV5693_NATIVE_WIDTH - rect.left); in ov5693_set_selection()
H A Dst-vgxy61.c285 .left = 0,
296 .left = 92,
307 .left = 92,
318 .left = 92,
332 .left = 0,
343 .left = 12,
354 .left = 332,
365 .left = 332,
376 .left = 332,
752 sel->r.left in vgxy61_get_selection()
[all...]
/third_party/curl/tests/server/
H A Dsockfilt.c357 int left = sizeof(data); in lograw() local
362 msnprintf(optr, left, "\\n"); in lograw()
365 left -= 2; in lograw()
368 msnprintf(optr, left, "\\r"); in lograw()
371 left -= 2; in lograw()
374 msnprintf(optr, left, "%c", (ISGRAPH(ptr[i]) || in lograw()
378 left--; in lograw()
386 left = sizeof(data); in lograw()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNormalizer.java1282 * If both the left and the right strings are in
1287 * dest=normalize(left+right, mode)
1296 * It is allowed to have dest==left to avoid copying the entire left string.
1298 * @param left Left source array, may be same as dest.
1299 * @param leftStart start in the left array.
1300 * @param leftLimit limit in the left array (==length)
1322 public static int concatenate(char[] left, int leftStart, int leftLimit, in concatenate() argument
1335 /* allow left==dest */ in concatenate()
1337 destBuilder.append(left, leftStar in concatenate()
1377 concatenate(char[] left, char[] right,Mode mode, int options) concatenate() argument
1414 concatenate(String left, String right, Mode mode, int options) concatenate() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DNormalizer.java1312 * If both the left and the right strings are in
1317 * dest=normalize(left+right, mode)
1326 * It is allowed to have dest==left to avoid copying the entire left string.
1328 * @param left Left source array, may be same as dest.
1329 * @param leftStart start in the left array.
1330 * @param leftLimit limit in the left array (==length)
1353 public static int concatenate(char[] left, int leftStart, int leftLimit, in concatenate() argument
1366 /* allow left==dest */ in concatenate()
1368 destBuilder.append(left, leftStar in concatenate()
1409 concatenate(char[] left, char[] right,Mode mode, int options) concatenate() argument
1447 concatenate(String left, String right, Mode mode, int options) concatenate() argument
[all...]
/third_party/node/deps/ngtcp2/nghttp3/lib/
H A Dnghttp3_stream.c188 if (rvint->left == 0) { in nghttp3_read_varint()
191 rvint->left = nghttp3_get_varint_len(src); in nghttp3_read_varint()
192 if (rvint->left <= srclen) { in nghttp3_read_varint()
194 rvint->left = 0; in nghttp3_read_varint()
206 --rvint->left; in nghttp3_read_varint()
209 n = nghttp3_min(rvint->left, srclen); in nghttp3_read_varint()
215 rvint->left -= n; in nghttp3_read_varint()
218 if (fin && rvint->left) { in nghttp3_read_varint()
/third_party/node/deps/v8/src/profiler/
H A Dprofile-generator.cc984 auto left = code_map_.upper_bound(start); in ClearCodesInRange() local
985 if (left != code_map_.begin()) { in ClearCodesInRange()
986 --left; in ClearCodesInRange()
987 if (left->first + left->second.size <= start) ++left; in ClearCodesInRange()
989 auto right = left; in ClearCodesInRange()
993 code_map_.erase(left, right); in ClearCodesInRange()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cShaderSubroutineTests.hpp275 static bool compare(const T& left, const T& right) in compare() argument
277 return left == right; in compare()
280 static bool compare(const glw::GLfloat& left, const glw::GLfloat& right);
559 void calculate(glw::GLuint function, const Utils::vec4<glw::GLfloat>& left, const Utils::vec4<glw::GLfloat>& right,
562 void calculate(const glw::GLuint combination[4], const Utils::vec4<glw::GLfloat>& left,
569 void logError(const glw::GLuint combination[4], const Utils::vec4<glw::GLfloat>& left,
574 bool testDraw(const glw::GLuint combination[4], const Utils::vec4<glw::GLfloat>& left,
724 bool testImageDraw(glw::GLuint subroutine_index, Utils::texture& left, Utils::texture& right,
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/
H A Dcapture.c1096 stream->dcrop.left = 0; in rkisp_set_stream_def_fmt()
1448 sel->r.left = 0; in rkisp_g_selection()
1472 sel->left = 0; in rkisp_update_crop()
1479 sel->left = ALIGN(sel->left, 0x02); in rkisp_update_crop()
1481 sel->left = clamp_t(u32, sel->left, 0, in->width - STREAM_MIN_MP_SP_INPUT_WIDTH); in rkisp_update_crop()
1483 sel->width = clamp_t(u32, sel->width, STREAM_MIN_MP_SP_INPUT_WIDTH, in->width - sel->left); in rkisp_update_crop()
1485 if (is_unite && (sel->width + 0x02 * sel->left) != in->width) { in rkisp_update_crop()
1486 sel->left in rkisp_update_crop()
[all...]
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/
H A Dcapture.c1098 stream->dcrop.left = 0; in rkisp_set_stream_def_fmt()
1468 sel->r.left = 0; in rkisp_g_selection()
1496 sel->left = 0; in rkisp_update_crop()
1503 sel->left = ALIGN(sel->left, 2); in rkisp_update_crop()
1505 sel->left = clamp_t(u32, sel->left, 0, in rkisp_update_crop()
1510 in->width - sel->left); in rkisp_update_crop()
1513 if (is_unite && (sel->width + 2 * sel->left) != in->width) { in rkisp_update_crop()
1514 sel->left in rkisp_update_crop()
[all...]
/kernel/linux/linux-5.10/arch/mips/kernel/
H A Dperf_event_mipsxx.c413 u64 left = local64_read(&hwc->period_left); in mipspmu_event_set_period() local
417 if (unlikely((left + period) & (1ULL << 63))) { in mipspmu_event_set_period()
418 /* left underflowed by more than period. */ in mipspmu_event_set_period()
419 left = period; in mipspmu_event_set_period()
420 local64_set(&hwc->period_left, left); in mipspmu_event_set_period()
423 } else if (unlikely((left + period) <= period)) { in mipspmu_event_set_period()
424 /* left underflowed by less than period. */ in mipspmu_event_set_period()
425 left += period; in mipspmu_event_set_period()
426 local64_set(&hwc->period_left, left); in mipspmu_event_set_period()
431 if (left > mipspm in mipspmu_event_set_period()
[all...]
/kernel/linux/linux-6.6/arch/mips/kernel/
H A Dperf_event_mipsxx.c413 u64 left = local64_read(&hwc->period_left); in mipspmu_event_set_period() local
417 if (unlikely((left + period) & (1ULL << 63))) { in mipspmu_event_set_period()
418 /* left underflowed by more than period. */ in mipspmu_event_set_period()
419 left = period; in mipspmu_event_set_period()
420 local64_set(&hwc->period_left, left); in mipspmu_event_set_period()
423 } else if (unlikely((left + period) <= period)) { in mipspmu_event_set_period()
424 /* left underflowed by less than period. */ in mipspmu_event_set_period()
425 left += period; in mipspmu_event_set_period()
426 local64_set(&hwc->period_left, left); in mipspmu_event_set_period()
431 if (left > mipspm in mipspmu_event_set_period()
[all...]
/kernel/linux/linux-5.10/drivers/media/platform/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; in preview_config_input_size()
1067 unsigned int eph = prev->crop.left + prev->crop.width - 1; in preview_config_input_size()
1818 unsigned int left = PREV_MARGIN_LEFT; in preview_try_crop() local
1824 * be cropped from the left and right sides of the image. As we don't in preview_try_crop()
1825 * know which filters will be enabled, increase the left and right in preview_try_crop()
1829 left += 2; in preview_try_crop()
1839 left += 2; in preview_try_crop()
1845 /* Restrict left/to in preview_try_crop()
[all...]
/kernel/linux/linux-6.6/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; in preview_config_input_size()
1067 unsigned int eph = prev->crop.left + prev->crop.width - 1; in preview_config_input_size()
1824 unsigned int left = PREV_MARGIN_LEFT; in preview_try_crop() local
1830 * be cropped from the left and right sides of the image. As we don't in preview_try_crop()
1831 * know which filters will be enabled, increase the left and right in preview_try_crop()
1835 left += 2; in preview_try_crop()
1845 left += 2; in preview_try_crop()
1851 /* Restrict left/to in preview_try_crop()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/
H A Di915_vma.c945 unsigned int left; in rotate_pages() local
963 left = (dst_stride - height) * I915_GTT_PAGE_SIZE; in rotate_pages()
965 if (!left) in rotate_pages()
975 sg_set_page(sg, NULL, left, 0); in rotate_pages()
977 sg_dma_len(sg) = left; in rotate_pages()
1063 unsigned int left = width * I915_GTT_PAGE_SIZE; in remap_tiled_color_plane_pages() local
1065 while (left) { in remap_tiled_color_plane_pages()
1077 length = min(left, length); in remap_tiled_color_plane_pages()
1087 left -= length; in remap_tiled_color_plane_pages()
1092 left in remap_tiled_color_plane_pages()
[all...]
/third_party/backends/backend/
H A Dplustek-pp_tpa.c707 "right = %d, left = %d --> right = %d\n", in TPAP98001AverageShadingData()
790 ULong left; in TPAP98003FindCenterPointer() local
800 left = ps->Device.DataOriginX + _NEG_ORG_OFFSETX * 2 - 600; in TPAP98003FindCenterPointer()
804 for( i = 5400UL - left, pwSum = ps->Bufs.b2.pSumRGB; i--; left++) in TPAP98003FindCenterPointer()
805 if( pwSum[left].Red > _NEG_EDGE_VALUE && in TPAP98003FindCenterPointer()
806 pwSum[left].Green > _NEG_EDGE_VALUE && in TPAP98003FindCenterPointer()
807 pwSum[left].Blue > _NEG_EDGE_VALUE) in TPAP98003FindCenterPointer()
810 for( i = 5400UL - left, pwSum = ps->Bufs.b2.pSumRGB; i--; right--) in TPAP98003FindCenterPointer()
816 if((right <= left) || ((righ in TPAP98003FindCenterPointer()
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dcompile-i386.c1231 struct storage *left = x86_expression(expr->left); in emit_compare() local
1268 reg2 = get_reg_value(left, get_regclass(expr->left)); in emit_compare()
1307 static struct storage *emit_divide(struct expression *expr, struct storage *left, struct storage *right) in emit_divide() argument
1323 emit_move(left, REG_EAX, NULL, NULL); in emit_divide()
1343 struct storage *left = x86_expression(expr->left); in emit_binop() local
1354 return emit_divide(expr, left, right); in emit_binop()
1403 src = get_reg_value(left, in emit_binop()
[all...]
/kernel/linux/linux-5.10/drivers/accesstokenid/
H A Daccess_tokenid.h52 struct token_perm_node *left; member

Completed in 68 milliseconds

1...<<51525354555657585960>>...129