/kernel/linux/linux-5.10/drivers/net/ethernet/realtek/ |
H A D | 8139too.c | 1918 u32 left = RX_BUF_LEN - offset; in wrap_copy() local 1920 if (size > left) { in wrap_copy() 1921 skb_copy_to_linear_data(skb, ring + offset, left); in wrap_copy() 1922 skb_copy_to_linear_data_offset(skb, left, ring, size - left); in wrap_copy()
|
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | atafb.c | 837 int right, hsync, left; /* standard timing in clock cycles, not pixel */ member 1089 if ((plen * xres + f25.right + f25.hsync + f25.left) * in falcon_decode_var() 1093 f32.left) * fb_info.monspecs.hfmin < f32.f) in falcon_decode_var() 1096 fext.left) * fb_info.monspecs.hfmin < fext.f && in falcon_decode_var() 1102 left_margin = pclock->left / plen; in falcon_decode_var()
|
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | block-group.c | 1255 * check of left over space in how much we have allocated. in inc_block_group_ro() 3245 u64 left; in check_system_chunk() local 3258 left = info->total_bytes - btrfs_space_info_used(info, true); in check_system_chunk() 3267 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { in check_system_chunk() 3268 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu", in check_system_chunk() 3269 left, thresh, type); in check_system_chunk() 3273 if (left < thresh) { in check_system_chunk() 3447 * We may have left one free space entry and other possible in btrfs_unfreeze_block_group() 3448 * tasks trimming this block group have left 1 entry each one. in btrfs_unfreeze_block_group()
|
/kernel/linux/linux-5.10/drivers/media/test-drivers/vicodec/ |
H A D | vicodec-core.c | 1157 s->r.left = 0; in vidioc_g_selection() 1164 s->r.left = 0; in vidioc_g_selection() 1173 s->r.left = 0; in vidioc_g_selection() 1180 s->r.left = 0; in vidioc_g_selection() 1206 s->r.left = 0; in vidioc_s_selection()
|
/kernel/linux/linux-6.6/drivers/media/test-drivers/vicodec/ |
H A D | vicodec-core.c | 1148 s->r.left = 0; in vidioc_g_selection() 1155 s->r.left = 0; in vidioc_g_selection() 1164 s->r.left = 0; in vidioc_g_selection() 1171 s->r.left = 0; in vidioc_g_selection() 1197 s->r.left = 0; in vidioc_s_selection()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/realtek/ |
H A D | 8139too.c | 1919 u32 left = RX_BUF_LEN - offset; in wrap_copy() local 1921 if (size > left) { in wrap_copy() 1922 skb_copy_to_linear_data(skb, ring + offset, left); in wrap_copy() 1923 skb_copy_to_linear_data_offset(skb, left, ring, size - left); in wrap_copy()
|
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | atafb.c | 825 int right, hsync, left; /* standard timing in clock cycles, not pixel */ member 1071 if ((plen * xres + f25.right + f25.hsync + f25.left) * in falcon_decode_var() 1075 f32.left) * fb_info.monspecs.hfmin < f32.f) in falcon_decode_var() 1078 fext.left) * fb_info.monspecs.hfmin < fext.f && in falcon_decode_var() 1084 left_margin = pclock->left / plen; in falcon_decode_var()
|
/third_party/curl/lib/vssh/ |
H A D | libssh.c | 2103 timediff_t left = 1000; in myssh_block_statemach() local 2118 left = Curl_timeleft(data, NULL, FALSE); in myssh_block_statemach() 2119 if(left < 0) { in myssh_block_statemach() 2129 CURL_SOCKET_BAD, left > 1000 ? 1000 : left); in myssh_block_statemach()
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | interpreter-generator.cc | 874 const LazyNode<Context>& context, TNode<Object> left, TNode<Object> right, 1004 TNode<Object> left = LoadRegisterAtOperandIndex(0); in BitwiseBinaryOpWithFeedback() local 1012 bitwise_op, left, right, [=] { return context; }, slot_index, in BitwiseBinaryOpWithFeedback() 1021 TNode<Object> left = GetAccumulator(); in BitwiseBinaryOpWithSmi() local 1029 bitwise_op, left, right, [=] { return context; }, slot_index, in BitwiseBinaryOpWithSmi()
|
/third_party/skia/src/gpu/vk/ |
H A D | GrVkGpu.cpp | 610 region.imageOffset = { rect.left(), rect.top(), 0 }; in onTransferPixelsTo() 680 region.imageOffset = {rect.left(), rect.top(), 0}; in onTransferPixelsFrom() 794 VkDeviceSize offset = rect.top()*layout.rowPitch + rect.left()*bpp; in uploadTexDataLinear() 979 int uploadLeft = rect.left(); in uploadTexDataOptimal() 2579 VkOffset3D offset = { rect.left(), rect.top(), 0 }; in onReadPixels()
|
/third_party/skia/tools/debugger/ |
H A D | DrawCommand.cpp | 202 str->appendf(" [%g %g %g %g]", r.left(), r.top(), r.right(), r.bottom()); in str_append() 435 writer.appendFloat(rect.left()); in MakeJsonRect() 444 writer.appendS32(rect.left()); in MakeJsonIRect() 1170 SkScalar left, in DrawImageCommand() 1176 , fLeft(left) in DrawImageCommand() 1169 DrawImageCommand(const SkImage* image, SkScalar left, SkScalar top, const SkSamplingOptions& sampling, const SkPaint* paint) DrawImageCommand() argument
|
/third_party/protobuf/src/google/protobuf/ |
H A D | text_format.cc | 1931 bool operator()(const FieldDescriptor* left, in operator ()() 1933 if (left->is_extension() && right->is_extension()) { in operator ()() 1934 return left->number() < right->number(); in operator ()() 1935 } else if (left->is_extension()) { in operator ()() 1940 return left->index() < right->index(); in operator ()()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | dpp_crypto.c | 212 size_t left = buflen, plen; in dpp_pbkdf2() local 215 while (left > 0) { in dpp_pbkdf2() 220 plen = left > hash_len ? hash_len : left; in dpp_pbkdf2() 223 left -= plen; in dpp_pbkdf2()
|
/kernel/linux/linux-5.10/net/ceph/ |
H A D | osd_client.c | 3340 long left; in linger_notify_finish_wait() local 3343 left = wait_for_completion_killable_timeout(&lreq->notify_finish_wait, in linger_notify_finish_wait() 3345 if (left <= 0) in linger_notify_finish_wait() 3346 left = left ?: -ETIMEDOUT; in linger_notify_finish_wait() 3348 left = lreq->notify_finish_error; /* completed */ in linger_notify_finish_wait() 3350 return left; in linger_notify_finish_wait() 4615 long left; in wait_request_timeout() local 4618 left = wait_for_completion_killable_timeout(&req->r_completion, in wait_request_timeout() 4620 if (left < in wait_request_timeout() [all...] |
/kernel/linux/linux-6.6/net/ceph/ |
H A D | osd_client.c | 3427 long left; in linger_notify_finish_wait() local 3430 left = wait_for_completion_killable_timeout(&lreq->notify_finish_wait, in linger_notify_finish_wait() 3432 if (left <= 0) in linger_notify_finish_wait() 3433 left = left ?: -ETIMEDOUT; in linger_notify_finish_wait() 3435 left = lreq->notify_finish_error; /* completed */ in linger_notify_finish_wait() 3437 return left; in linger_notify_finish_wait() 4707 long left; in wait_request_timeout() local 4710 left = wait_for_completion_killable_timeout(&req->r_completion, in wait_request_timeout() 4712 if (left < in wait_request_timeout() [all...] |
/kernel/linux/linux-5.10/arch/x86/events/intel/ |
H A D | core.c | 2250 s64 left = local64_read(&hwc->period_left); in icl_set_topdown_event_period() local 2260 if (left == x86_pmu.max_period) { in icl_set_topdown_event_period() 3939 static u64 bdw_limit_period(struct perf_event *event, u64 left) in bdw_limit_period() argument 3943 if (left < 128) in bdw_limit_period() 3944 left = 128; in bdw_limit_period() 3945 left &= ~0x3fULL; in bdw_limit_period() 3947 return left; in bdw_limit_period() 3950 static u64 nhm_limit_period(struct perf_event *event, u64 left) in nhm_limit_period() argument 3952 return max(left, 32ULL); in nhm_limit_period()
|
/kernel/linux/linux-5.10/tools/perf/ |
H A D | builtin-trace.c | 3780 char *tok, *left = evsel->filter, *new_filter = evsel->filter; local 3782 while ((tok = strpbrk(left, "=<>!")) != NULL) { 3794 while (!isalpha(*left)) 3795 if (++left == tok) { 3809 int left_size = tok - left, 3813 while (isspace(left[left_size - 1])) 3816 scnprintf(arg, sizeof(arg), "%.*s", left_size, left); 3848 left = n + expansion_offset + expansion_lenght; 3863 left = right_end; 3944 * other events (raw_syscalls:sys_{enter,exit}, etc are left "withou [all...] |
/kernel/linux/linux-6.6/io_uring/ |
H A D | io_uring.c | 2185 * Plug now if we have more than 2 IO left after this, and the 2390 unsigned int left; variable 2396 ret = left = min(nr, entries); 2397 io_get_task_refs(left); variable 2398 io_submit_state_start(&ctx->submit_state, left); 2417 left--; 2420 } while (--left); 2422 if (unlikely(left)) { 2423 ret -= left; 2427 current->io_uring->cached_refs += left; [all...] |
/kernel/linux/linux-6.6/tools/perf/ |
H A D | builtin-trace.c | 3701 char *tok, *left = evsel->filter, *new_filter = evsel->filter; local 3703 while ((tok = strpbrk(left, "=<>!")) != NULL) { 3715 while (!isalpha(*left)) 3716 if (++left == tok) { 3730 int left_size = tok - left, 3734 while (isspace(left[left_size - 1])) 3737 scnprintf(arg, sizeof(arg), "%.*s", left_size, left); 3769 left = n + expansion_offset + expansion_lenght; 3784 left = right_end; 3868 * other events (raw_syscalls:sys_{enter,exit}, etc are left "withou [all...] |
/third_party/glslang/SPIRV/ |
H A D | SpvBuilder.cpp | 2670 Id Builder::createBinOp(Op opCode, Id typeId, Id left, Id right) in createBinOp() argument 2676 operands[0] = left; operands[1] = right; in createBinOp() 2680 op->addIdOperand(left); in createBinOp() 2822 void Builder::promoteScalar(Decoration precision, Id& left, Id& right) in promoteScalar() argument 2824 int direction = getNumComponents(right) - getNumComponents(left); in promoteScalar() 2827 left = smearScalar(precision, left, makeVectorType(getTypeId(left), getNumComponents(right))); in promoteScalar() 2829 right = smearScalar(precision, right, makeVectorType(getTypeId(right), getNumComponents(left))); in promoteScalar() 3204 // Only structs, arrays, and matrices should be left in createCompositeCompare() [all...] |
/third_party/vixl/test/aarch64/ |
H A D | test-assembler-aarch64.cc | 5209 Op op, T left, T right, int carry, T expected, StatusFlags expected_flags) { 5218 __ Mov(left_reg, left); 5229 ASSERT_EQUAL_64(left, left_reg.X()); 5389 for (size_t left = 0; left < input_count; left++) { 5391 const Expected& expected = expected_adcs_x[left][right]; 5393 inputs[left], 5399 inputs[left], 5407 for (size_t left [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb3/ |
H A D | t3_hw.c | 918 unsigned int i, c, left, val, offset = addr & 0xff; in t3_write_flash() local 929 for (left = n; left; left -= c) { in t3_write_flash() 930 c = min(left, 4U); in t3_write_flash() 934 ret = sf1_write(adapter, c, c != left, val); in t3_write_flash()
|
/kernel/linux/linux-5.10/drivers/scsi/csiostor/ |
H A D | csio_hw.c | 532 uint32_t i, c, left, val, offset = addr & 0xff; in csio_hw_write_flash() local 547 for (left = n; left; left -= c) { in csio_hw_write_flash() 548 c = min(left, 4U); in csio_hw_write_flash() 552 ret = csio_hw_sf1_write(hw, c, c != left, 1, val); in csio_hw_write_flash() 764 /* Table for non-Numonix supported flash parts. Numonix parts are left in csio_hw_get_flash_params()
|
/kernel/linux/linux-5.10/drivers/scsi/qla2xxx/ |
H A D | qla_sup.c | 3006 uint32_t faddr, left, burst; in qla25xx_read_optrom_data() local 3031 left = length >> 2; in qla25xx_read_optrom_data() 3033 while (left != 0) { in qla25xx_read_optrom_data() 3034 if (burst > left) in qla25xx_read_optrom_data() 3035 burst = left; in qla25xx_read_optrom_data() 3054 left -= burst; in qla25xx_read_optrom_data()
|
/kernel/linux/linux-5.10/fs/ |
H A D | namespace.c | 3114 unsigned left, offset; in copy_mount_options() local 3123 left = copy_from_user(copy, data, PAGE_SIZE); in copy_mount_options() 3129 offset = PAGE_SIZE - left; in copy_mount_options() 3130 while (left) { in copy_mount_options() 3135 left--; in copy_mount_options() 3139 if (left == PAGE_SIZE) { in copy_mount_options()
|