/kernel/linux/linux-6.6/include/linux/ |
H A D | projid.h | 36 static inline bool projid_eq(kprojid_t left, kprojid_t right) in projid_eq() argument 38 return __kprojid_val(left) == __kprojid_val(right); in projid_eq() 41 static inline bool projid_lt(kprojid_t left, kprojid_t right) in projid_lt() argument 43 return __kprojid_val(left) < __kprojid_val(right); in projid_lt()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | lossless_videodsp_init.c | 30 int *left, int *left_top); 33 ptrdiff_t w, int left); 35 ptrdiff_t w, int left); 37 ptrdiff_t w, int left);
|
/third_party/ffmpeg/libavutil/tests/ |
H A D | tree.c | 30 int left = check(t->child[0]); in check() local 33 if (left > 999 || right > 999) in check() 35 if (right - left != t->state) in check() 39 return FFMAX(left, right) + 1; in check()
|
/third_party/node/test/parallel/ |
H A D | test-tls-set-sigalgs.js | 12 function assert_arrays_equal(left, right) { 13 assert.strictEqual(left.length, right.length); 14 for (let i = 0; i < left.length; i++) { 15 assert.strictEqual(left[i], right[i]);
|
/third_party/musl/src/locale/ |
H A D | strfmon.c | 12 int fill, nogrp, negpar, nosym, left, intl; in vstrfmon_l() local 29 left = 0; in vstrfmon_l() 46 left = 1; in vstrfmon_l() 64 if (!left && fw>w) w = fw; in vstrfmon_l()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | localintermediate.h | 35 TIntermTyped* addBinaryMath(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc&); 36 TIntermTyped* addAssign(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc&); 39 TIntermAggregate* growAggregate(TIntermNode* left, TIntermNode* right, const TSourceLoc&); 46 TIntermTyped* addComma(TIntermTyped* left, TIntermTyped* right, const TSourceLoc&);
|
H A D | OutputASM.cpp | 704 TIntermTyped *left = node->getLeft(); in visitBinary() local 706 const TType &leftType = left->getType(); in visitBinary() 719 assignLvalue(left, right); in visitBinary() 727 for(int i = 0; i < left->totalRegisterCount(); i++) in visitBinary() 729 emit(sw::Shader::OPCODE_DEF, left, i, right, i); in visitBinary() 735 copy(left, right); in visitBinary() 743 emit(sw::Shader::OPCODE_MUL, result, i, left, i, right); in visitBinary() 746 assignLvalue(left, result); in visitBinary() 751 // The left operand may contain a swizzle serving double-duty as in visitBinary() 753 // first. Otherwise we may end up never setting up our left in visitBinary() 826 case EOpAddAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_ADD, result), result, left, left, right); break; visitBinary() local 827 case EOpAdd: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_ADD, result), result, left, right); break; visitBinary() local 828 case EOpSubAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_SUB, result), result, left, left, right); break; visitBinary() local 829 case EOpSub: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_SUB, result), result, left, right); break; visitBinary() local 830 case EOpMulAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_MUL, result), result, left, left, right); break; visitBinary() local 831 case EOpMul: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_MUL, result), result, left, right); break; visitBinary() local 832 case EOpDivAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_DIV, result), result, left, left, right); break; visitBinary() local 833 case EOpDiv: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_DIV, result), result, left, right); break; visitBinary() local 834 case EOpIModAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_IMOD, result), result, left, left, right); break; visitBinary() local 835 case EOpIMod: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_IMOD, result), result, left, right); break; visitBinary() local 838 case EOpBitShiftRightAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_ISHR, result), result, left, left, right); break; visitBinary() local 839 case EOpBitShiftRight: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_ISHR, result), result, left, right); break; visitBinary() local 876 case EOpVectorTimesScalarAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_MUL, left), result, left, left, right); break; visitBinary() local 877 case EOpVectorTimesScalar: if(visit == PostVisit) emit(getOpcode(sw::Shader::OPCODE_MUL, left), result, left, right); break; visitBinary() local 2186 emitCmp(sw::Shader::Control cmpOp, TIntermTyped *dst, TIntermNode *left, TIntermNode *right, int index) emitCmp() argument 2657 TIntermTyped *left = binary->getLeft(); lvalue() local 3429 TIntermTyped *left = binary->getLeft(); samplerRegister() local 3874 TIntermSymbol *left = test ? test->getLeft()->getAsSymbolNode() : nullptr; LoopInfo() local [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cord_internal.cc | 48 CordRep* left = rep_concat->left; in Destroy() local 51 if (!left->refcount.Decrement()) { in Destroy() 52 rep = left; in Destroy()
|
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/samples/ |
H A D | SkottieSample.java | 38 public void render(Canvas canvas, long ms, float left, float top, float right, float bottom) { in render() argument 39 canvas.drawRect(left, top, right, bottom, mClearPaint); in render() 44 float w = right - left, in render() 50 canvas.concat(new Matrix().translate(left + (w - s*mAnimation.getWidth() )/2, in render()
|
/third_party/weex-loader/deps/weex-scripter/lib/ |
H A D | fix.js | 10 "left": { 104 var exp, left, right, dataValue 110 left = removeAllLoc(exp.left || {}) 111 if (JSON.stringify(left) === JSON.stringify(LEFT_MODULE_EXPORTS_AST)) {
|
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | ctree.c | 1048 struct extent_buffer *left = NULL; in balance_level() local 1126 left = btrfs_read_node_slot(parent, pslot - 1); in balance_level() 1127 if (IS_ERR(left)) { in balance_level() 1128 ret = PTR_ERR(left); in balance_level() 1129 left = NULL; in balance_level() 1133 __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); in balance_level() 1134 wret = btrfs_cow_block(trans, root, left, in balance_level() 1135 parent, pslot - 1, &left, in balance_level() 1162 if (left) { in balance_level() 1163 orig_slot += btrfs_header_nritems(left); in balance_level() 1306 struct extent_buffer *left = NULL; push_nodes_for_insert() local 2778 check_sibling_keys(struct extent_buffer *left, struct extent_buffer *right) check_sibling_keys() argument 3241 struct extent_buffer *left = path->nodes[0]; __push_leaf_right() local 3376 struct extent_buffer *left = path->nodes[0]; push_leaf_right() local 3449 __push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_path *path, int data_size, int empty, struct extent_buffer *left, int free_space, u32 right_nritems, u32 max_slot) __push_leaf_left() argument 3592 struct extent_buffer *left; push_leaf_left() local [all...] |
/third_party/glfw/src/ |
H A D | win32_window.c | 209 (int) (((area->right - area->left) - (frame.right - frame.left)) / ratio); in applyAspectRatio() 214 (int) (((area->right - area->left) - (frame.right - frame.left)) / ratio); in applyAspectRatio() 218 area->right = area->left + (frame.right - frame.left) + in applyAspectRatio() 250 ClientToScreen(window->win32.handle, (POINT*) &clipRect.left); in captureCursor() 335 ClientToScreen(window->win32.handle, (POINT*) &area.left); in cursorInContentArea() 361 ClientToScreen(window->win32.handle, (POINT*) &rect.left); in updateWindowStyles() 365 rect.left, rec in updateWindowStyles() 1746 _glfwGetWindowFrameSizeWin32(_GLFWwindow* window, int* left, int* top, int* right, int* bottom) _glfwGetWindowFrameSizeWin32() argument [all...] |
/kernel/linux/linux-5.10/tools/perf/ |
H A D | builtin-diff.c | 561 static int64_t block_cycles_diff_cmp(struct hist_entry *left, in block_cycles_diff_cmp() argument 564 bool pairs_left = hist_entry__has_pairs(left); in block_cycles_diff_cmp() 571 l = llabs(left->diff.cycles); in block_cycles_diff_cmp() 577 struct hist_entry *left, struct hist_entry *right) in block_sort() 579 return block_cycles_diff_cmp(right, left); in block_sort() 758 __hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right, in __hist_entry__cmp_compute() argument 764 double l = left->diff.period_ratio_delta; in __hist_entry__cmp_compute() 771 double l = fabs(left->diff.period_ratio_delta); in __hist_entry__cmp_compute() 778 double l = left->diff.period_ratio; in __hist_entry__cmp_compute() 785 s64 l = left in __hist_entry__cmp_compute() 576 block_sort(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) block_sort() argument 798 hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right, int c, int sort_idx) hist_entry__cmp_compute() argument 828 hist_entry__cmp_compute_idx(struct hist_entry *left, struct hist_entry *right, int c, int sort_idx) hist_entry__cmp_compute_idx() argument 867 hist_entry__cmp_baseline(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_baseline() argument 876 hist_entry__cmp_delta(struct perf_hpp_fmt *fmt, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_delta() argument 885 hist_entry__cmp_delta_abs(struct perf_hpp_fmt *fmt, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_delta_abs() argument 894 hist_entry__cmp_ratio(struct perf_hpp_fmt *fmt, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_ratio() argument 903 hist_entry__cmp_wdiff(struct perf_hpp_fmt *fmt, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_wdiff() argument 912 hist_entry__cmp_delta_idx(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_delta_idx() argument 920 hist_entry__cmp_delta_abs_idx(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_delta_abs_idx() argument 928 hist_entry__cmp_ratio_idx(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_ratio_idx() argument 936 hist_entry__cmp_wdiff_idx(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_wdiff_idx() argument [all...] |
/kernel/linux/linux-6.6/drivers/md/persistent-data/ |
H A D | dm-btree.c | 553 static void redistribute2(struct btree_node *left, struct btree_node *right) in redistribute2() argument 555 unsigned int nr_left = le32_to_cpu(left->header.nr_entries); in redistribute2() 564 copy_entries(left, nr_left, right, 0, delta); in redistribute2() 571 copy_entries(right, 0, left, target_left, delta); in redistribute2() 574 left->header.nr_entries = cpu_to_le32(target_left); in redistribute2() 582 static void redistribute3(struct btree_node *left, struct btree_node *center, in redistribute3() argument 585 unsigned int nr_left = le32_to_cpu(left->header.nr_entries); in redistribute3() 600 copy_entries(left, nr_left, right, 0, left_short); in redistribute3() 607 copy_entries(center, 0, left, target_left, left_to_center); in redistribute3() 615 copy_entries(right, 0, left, nr_lef in redistribute3() 658 struct dm_block *left, *right, *parent; split_one_into_two() local 742 struct dm_block *left, *middle, *right, *parent; split_two_into_three() local 843 struct dm_block *left, *right, *new_parent; btree_split_beneath() local 920 struct btree_node *left, *right, *parent = dm_block_data(shadow_parent(s)); rebalance_left() local 949 struct btree_node *left, *right, *parent = dm_block_data(shadow_parent(s)); rebalance_right() local [all...] |
/kernel/linux/linux-6.6/tools/perf/ |
H A D | builtin-diff.c | 563 static int64_t block_cycles_diff_cmp(struct hist_entry *left, in block_cycles_diff_cmp() argument 566 bool pairs_left = hist_entry__has_pairs(left); in block_cycles_diff_cmp() 573 l = llabs(left->diff.cycles); in block_cycles_diff_cmp() 579 struct hist_entry *left, struct hist_entry *right) in block_sort() 581 return block_cycles_diff_cmp(right, left); in block_sort() 760 __hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right, in __hist_entry__cmp_compute() argument 766 double l = left->diff.period_ratio_delta; in __hist_entry__cmp_compute() 773 double l = fabs(left->diff.period_ratio_delta); in __hist_entry__cmp_compute() 780 double l = left->diff.period_ratio; in __hist_entry__cmp_compute() 787 s64 l = left in __hist_entry__cmp_compute() 578 block_sort(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) block_sort() argument 800 hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right, int c, int sort_idx) hist_entry__cmp_compute() argument 830 hist_entry__cmp_compute_idx(struct hist_entry *left, struct hist_entry *right, int c, int sort_idx) hist_entry__cmp_compute_idx() argument 869 hist_entry__cmp_baseline(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_baseline() argument 878 hist_entry__cmp_delta(struct perf_hpp_fmt *fmt, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_delta() argument 887 hist_entry__cmp_delta_abs(struct perf_hpp_fmt *fmt, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_delta_abs() argument 896 hist_entry__cmp_ratio(struct perf_hpp_fmt *fmt, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_ratio() argument 905 hist_entry__cmp_wdiff(struct perf_hpp_fmt *fmt, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_wdiff() argument 914 hist_entry__cmp_delta_idx(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_delta_idx() argument 922 hist_entry__cmp_delta_abs_idx(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_delta_abs_idx() argument 930 hist_entry__cmp_ratio_idx(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_ratio_idx() argument 938 hist_entry__cmp_wdiff_idx(struct perf_hpp_fmt *fmt __maybe_unused, struct hist_entry *left, struct hist_entry *right) hist_entry__cmp_wdiff_idx() argument [all...] |
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | ctree.c | 1851 struct extent_buffer *left = NULL; in balance_level() local 1926 left = btrfs_read_node_slot(parent, pslot - 1); in balance_level() 1927 if (IS_ERR(left)) in balance_level() 1928 left = NULL; in balance_level() 1930 if (left) { in balance_level() 1931 __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); in balance_level() 1932 btrfs_set_lock_blocking_write(left); in balance_level() 1933 wret = btrfs_cow_block(trans, root, left, in balance_level() 1934 parent, pslot - 1, &left, in balance_level() 1959 if (left) { in balance_level() 2082 struct extent_buffer *left = NULL; push_nodes_for_insert() local 3240 check_sibling_keys(struct extent_buffer *left, struct extent_buffer *right) check_sibling_keys() argument 3682 struct extent_buffer *left = path->nodes[0]; __push_leaf_right() local 3828 struct extent_buffer *left = path->nodes[0]; push_leaf_right() local 3911 __push_leaf_left(struct btrfs_path *path, int data_size, int empty, struct extent_buffer *left, int free_space, u32 right_nritems, u32 max_slot) __push_leaf_left() argument 4068 struct extent_buffer *left; push_leaf_left() local [all...] |
/kernel/linux/linux-5.10/arch/parisc/math-emu/ |
H A D | sgl_float.h | 50 #define Sgl_leftshiftby1_withextent(left,right,result) \ 51 Shiftdouble(Sall(left),Extall(right),31,Sall(result)) 53 #define Sgl_rightshiftby1_withextent(left,right,dst) \ 54 Shiftdouble(Sall(left),Extall(right),1,Extall(right)) 220 /* The left argument is never smaller than the right argument */ 224 /* Subtract right augmented with extension from left augmented with zeros and 226 #define Sgl_subtract_withextension(left,right,extent,result) \ 227 /* sgl_floating_point left,right,result; extension extent */ \ 228 Sgl_subtract(left,right,result); \ 235 #define Sgl_xortointp1(left,righ [all...] |
/kernel/linux/linux-6.6/arch/parisc/math-emu/ |
H A D | sgl_float.h | 50 #define Sgl_leftshiftby1_withextent(left,right,result) \ 51 Shiftdouble(Sall(left),Extall(right),31,Sall(result)) 53 #define Sgl_rightshiftby1_withextent(left,right,dst) \ 54 Shiftdouble(Sall(left),Extall(right),1,Extall(right)) 220 /* The left argument is never smaller than the right argument */ 224 /* Subtract right augmented with extension from left augmented with zeros and 226 #define Sgl_subtract_withextension(left,right,extent,result) \ 227 /* sgl_floating_point left,right,result; extension extent */ \ 228 Sgl_subtract(left,right,result); \ 235 #define Sgl_xortointp1(left,righ [all...] |
/kernel/linux/linux-5.10/fs/xfs/libxfs/ |
H A D | xfs_refcount.c | 292 * which extent is to the left or the right of that extent. Now we 293 * have a left, current, and right extent. If the new reference count 294 * of the center extent enables us to merge left, center, and right 296 * at the left end of the range, abuts the left extent, and its new 297 * reference count matches the left extent's record, then merge them. 300 * example, we can left merge (assuming an increment operation): 380 /* Insert the left extent. */ in xfs_refcount_split_extent() 399 * Merge the left, center, and right extents. 404 struct xfs_refcount_irec *left, in xfs_refcount_merge_center_extents() 402 xfs_refcount_merge_center_extents( struct xfs_btree_cur *cur, struct xfs_refcount_irec *left, struct xfs_refcount_irec *center, struct xfs_refcount_irec *right, unsigned long long extlen, xfs_extlen_t *aglen) xfs_refcount_merge_center_extents() argument 479 xfs_refcount_merge_left_extent( struct xfs_btree_cur *cur, struct xfs_refcount_irec *left, struct xfs_refcount_irec *cleft, xfs_agblock_t *agbno, xfs_extlen_t *aglen) xfs_refcount_merge_left_extent() argument 608 xfs_refcount_find_left_extents( struct xfs_btree_cur *cur, struct xfs_refcount_irec *left, struct xfs_refcount_irec *cleft, xfs_agblock_t agbno, xfs_extlen_t aglen, int flags) xfs_refcount_find_left_extents() argument 801 struct xfs_refcount_irec left = {0}, cleft = {0}; xfs_refcount_merge_extents() local [all...] |
/third_party/skia/src/core/ |
H A D | SkScan_Antihair.cpp | 353 if (x0 > x1) { // we want to go left-to-right 484 int left, right; 486 left = SkFixedFloorToInt(fstart - SK_FixedHalf); 490 left = SkFixedFloorToInt(fstart + (istop - istart - 1) * slope - SK_FixedHalf); 493 left -= 1; 496 if (left >= clip->fRight || right <= clip->fLeft) { 499 if (clip->fLeft <= left && clip->fRight >= right) { 581 SkFDot6 left = std::min(x0, x1); 587 ir.setLTRB(SkFDot6Floor(left) - 1, 640 int left [all...] |
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | enc_mips_dsp_r2.c | 398 HORIZONTAL_PRED(dst, left, 8) 399 HORIZONTAL_PRED(dst, left, 16) 463 /* true motion without left samples (hence: with default 129 value) */ \ 475 TRUE_MOTION(dst, left, top, 8) 476 TRUE_MOTION(dst, left, top, 16) 483 static WEBP_INLINE void DCMode16(uint8_t* dst, const uint8_t* left, in DCMode16() argument 502 "beqz %[left], 1f \n\t" in DCMode16() 503 LOAD_WITH_OFFSET_X4(temp0, temp1, temp2, temp3, left, in DCMode16() 518 "beqz %[left], 4f \n\t" in DCMode16() 519 LOAD_WITH_OFFSET_X4(temp0, temp1, temp2, temp3, left, in DCMode16() 546 DCMode8(uint8_t* dst, const uint8_t* left, const uint8_t* top) DCMode8() argument 1016 IntraChromaPreds_MIPSdspR2(uint8_t* dst, const uint8_t* left, const uint8_t* top) IntraChromaPreds_MIPSdspR2() argument 1036 Intra16Preds_MIPSdspR2(uint8_t* dst, const uint8_t* left, const uint8_t* top) Intra16Preds_MIPSdspR2() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
H A D | eap_server_peap.c | 663 size_t left; in eap_peap_process_phase2_tlv() local 668 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_TLV, in_data, &left); in eap_peap_process_phase2_tlv() 675 wpa_hexdump(MSG_DEBUG, "EAP-PEAP: Received TLVs", pos, left); in eap_peap_process_phase2_tlv() 676 while (left >= 4) { in eap_peap_process_phase2_tlv() 682 left -= 4; in eap_peap_process_phase2_tlv() 683 if ((size_t) tlv_len > left) { in eap_peap_process_phase2_tlv() 685 "(tlv_len=%d left=%lu)", tlv_len, in eap_peap_process_phase2_tlv() 686 (unsigned long) left); in eap_peap_process_phase2_tlv() 712 left -= tlv_len; in eap_peap_process_phase2_tlv() 714 if (left) { in eap_peap_process_phase2_tlv() 783 size_t left; eap_peap_process_phase2_soh() local 917 size_t left; eap_peap_process_phase2_response() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
H A D | eap_server_peap.c | 694 size_t left; in eap_peap_process_phase2_tlv() local 699 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_TLV, in_data, &left); in eap_peap_process_phase2_tlv() 706 wpa_hexdump(MSG_DEBUG, "EAP-PEAP: Received TLVs", pos, left); in eap_peap_process_phase2_tlv() 707 while (left >= 4) { in eap_peap_process_phase2_tlv() 713 left -= 4; in eap_peap_process_phase2_tlv() 714 if ((size_t) tlv_len > left) { in eap_peap_process_phase2_tlv() 716 "(tlv_len=%d left=%lu)", tlv_len, in eap_peap_process_phase2_tlv() 717 (unsigned long) left); in eap_peap_process_phase2_tlv() 743 left -= tlv_len; in eap_peap_process_phase2_tlv() 745 if (left) { in eap_peap_process_phase2_tlv() 814 size_t left; eap_peap_process_phase2_soh() local 948 size_t left; eap_peap_process_phase2_response() local [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/mediatek/mdp3/ |
H A D | mtk-mdp3-type.h | 18 s32 left; member 29 s32 left; member 36 s32 left; member
|
/third_party/ffmpeg/libavcodec/ |
H A D | hevcpred.h | 35 const uint8_t *left, ptrdiff_t stride); 36 void (*pred_dc)(uint8_t *src, const uint8_t *top, const uint8_t *left, 39 const uint8_t *left, ptrdiff_t stride,
|