/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ |
H A D | chcr_common.h | 61 int left = (void *)q->stat - pos; in chcr_copy_to_txd() local 64 if (likely(length <= left)) { in chcr_copy_to_txd() 68 memcpy(pos, src, left); in chcr_copy_to_txd() 69 memcpy(q->desc, src + left, length - left); in chcr_copy_to_txd() 70 pos = (void *)q->desc + (length - left); in chcr_copy_to_txd()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ |
H A D | chcr_common.h | 61 int left = (void *)q->stat - pos; in chcr_copy_to_txd() local 64 if (likely(length <= left)) { in chcr_copy_to_txd() 68 memcpy(pos, src, left); in chcr_copy_to_txd() 69 memcpy(q->desc, src + left, length - left); in chcr_copy_to_txd() 70 pos = (void *)q->desc + (length - left); in chcr_copy_to_txd()
|
/third_party/libabigail/tests/ |
H A D | test-kmi-whitelist.cc | 51 function_suppression_sptr left = is_function_suppression(suppr[0]); in test_suppressions_are_consistent() local 55 REQUIRE(left); in test_suppressions_are_consistent() 58 REQUIRE(left->get_label() == right->get_label()); in test_suppressions_are_consistent() 60 REQUIRE(left->get_drops_artifact_from_ir() in test_suppressions_are_consistent() 63 REQUIRE(left->get_symbol_name_not_regex_str() in test_suppressions_are_consistent() 66 REQUIRE(left->get_symbol_name_not_regex_str() == expr); in test_suppressions_are_consistent()
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrTriangulator.cpp | 394 e->fTop->fID, e->fBottom->fID, fID, side == kLeft_Side ? "left" : "right"); in addEdge() 635 void GrTriangulator::FindEnclosingEdges(Vertex* v, EdgeList* edges, Edge** left, Edge** right) { in FindEnclosingEdges() argument 637 *left = v->fFirstEdgeAbove->fLeft; in FindEnclosingEdges() 649 *left = prev; in FindEnclosingEdges() 844 static bool top_collinear(Edge* left, Edge* right) { in top_collinear() argument 845 if (!left || !right) { in top_collinear() 848 return left->fTop->fPoint == right->fTop->fPoint || in top_collinear() 849 !left->isLeftOf(right->fTop) || !right->isRightOf(left->fTop); in top_collinear() 852 static bool bottom_collinear(Edge* left, Edg argument 922 intersectEdgePair(Edge* left, Edge* right, EdgeList* activeEdges, Vertex** current, const Comparator& c) const intersectEdgePair() argument 1056 checkForIntersection(Edge* left, Edge* right, EdgeList* activeEdges, Vertex** current, VertexList* mesh, const Comparator& c) const checkForIntersection() argument 1260 validate_edge_pair(Edge* left, Edge* right, const Comparator& c) validate_edge_pair() argument 1283 Edge* left = edges->fHead; validate_edge_list() local [all...] |
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | enc_sse2.c | 540 static WEBP_INLINE void HE8uv_SSE2(uint8_t* dst, const uint8_t* left) { in HE8uv_SSE2() argument 543 const __m128i values = _mm_set1_epi8(left[j]); in HE8uv_SSE2() 549 static WEBP_INLINE void HE16_SSE2(uint8_t* dst, const uint8_t* left) { in HE16_SSE2() argument 552 const __m128i values = _mm_set1_epi8(left[j]); in HE16_SSE2() 559 const uint8_t* left, int size) { in HorizontalPred_SSE2() 560 if (left != NULL) { in HorizontalPred_SSE2() 562 HE8uv_SSE2(dst, left); in HorizontalPred_SSE2() 564 HE16_SSE2(dst, left); in HorizontalPred_SSE2() 571 static WEBP_INLINE void TM_SSE2(uint8_t* dst, const uint8_t* left, in TM_SSE2() argument 579 const int val = left[ in TM_SSE2() 558 HorizontalPred_SSE2(uint8_t* dst, const uint8_t* left, int size) HorizontalPred_SSE2() argument 599 TrueMotion_SSE2(uint8_t* dst, const uint8_t* left, const uint8_t* top, int size) TrueMotion_SSE2() argument 620 DC8uv_SSE2(uint8_t* dst, const uint8_t* left, const uint8_t* top) DC8uv_SSE2() argument 637 DC8uvNoTop_SSE2(uint8_t* dst, const uint8_t* left) DC8uvNoTop_SSE2() argument 646 DC8uvMode_SSE2(uint8_t* dst, const uint8_t* left, const uint8_t* top) DC8uvMode_SSE2() argument 661 DC16_SSE2(uint8_t* dst, const uint8_t* left, const uint8_t* top) DC16_SSE2() argument 676 DC16NoTop_SSE2(uint8_t* dst, const uint8_t* left) DC16NoTop_SSE2() argument 685 DC16Mode_SSE2(uint8_t* dst, const uint8_t* left, const uint8_t* top) DC16Mode_SSE2() argument 914 IntraChromaPreds_SSE2(uint8_t* dst, const uint8_t* left, const uint8_t* top) IntraChromaPreds_SSE2() argument 934 Intra16Preds_SSE2(uint8_t* dst, const uint8_t* left, const uint8_t* top) Intra16Preds_SSE2() argument [all...] |
/third_party/gn/src/gn/ |
H A D | parser.cc | 128 All binary operators are left-associative. 168 left-hand list. It is an error to remove an item not in the list. This is to 225 // Currently all operators are left-associative so this list is sequential. To 228 // of "<left-associated-precedence> - 1". 441 std::unique_ptr<ParseNode> left = (this->*prefix)(token); in ParseExpression() local 443 return left; in ParseExpression() 454 left = (this->*infix)(std::move(left), next_token); in ParseExpression() 459 return left; in ParseExpression() 514 std::unique_ptr<ParseNode> left, in BinaryOperator() 513 BinaryOperator( std::unique_ptr<ParseNode> left, const Token& token) BinaryOperator() argument 532 IdentifierOrCall( std::unique_ptr<ParseNode> left, const Token& token) IdentifierOrCall() argument 573 Assignment(std::unique_ptr<ParseNode> left, const Token& token) Assignment() argument 594 Subscript(std::unique_ptr<ParseNode> left, const Token& token) Subscript() argument 614 DotOperator(std::unique_ptr<ParseNode> left, const Token& token) DotOperator() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | wpa_common.c | 1611 int left; in wpa_parse_wpa_ie_rsn() local 1639 left = rsn_ie_len - 6; in wpa_parse_wpa_ie_rsn() 1659 left = rsn_ie_len - sizeof(*hdr); in wpa_parse_wpa_ie_rsn() 1662 if (left >= RSN_SELECTOR_LEN) { in wpa_parse_wpa_ie_rsn() 1673 left -= RSN_SELECTOR_LEN; in wpa_parse_wpa_ie_rsn() 1674 } else if (left > 0) { in wpa_parse_wpa_ie_rsn() 1676 __func__, left); in wpa_parse_wpa_ie_rsn() 1680 if (left >= 2) { in wpa_parse_wpa_ie_rsn() 1684 left -= 2; in wpa_parse_wpa_ie_rsn() 1685 if (count == 0 || count > left / RSN_SELECTOR_LE in wpa_parse_wpa_ie_rsn() 1805 int left; wpa_parse_wpa_ie_wpa() local 3133 size_t left; wpa_parse_generic() local [all...] |
/third_party/lzma/CPP/7zip/Common/ |
H A D | FilePathAutoRename.cpp | 36 UInt32 left = 1, right = ((UInt32)1 << 30);
in AutoRenamePath() local 37 while (left != right)
in AutoRenamePath() 39 UInt32 mid = (left + right) / 2;
in AutoRenamePath() 41 left = mid + 1;
in AutoRenamePath()
|
/third_party/skia/client_utils/android/ |
H A D | BitmapRegionDecoderPriv.h | 29 * @param outX The left offset of the image subset within the output bitmap. 38 int left = std::max(0, subset->fLeft); in adjust_subset_rect() local 42 *outX = left - subset->fLeft; in adjust_subset_rect() 46 int width = std::min(imageDims.width() - left, subset->width() - *outX); in adjust_subset_rect() 52 subset->setXYWH(left, top, width, height); in adjust_subset_rect()
|
/kernel/linux/linux-5.10/arch/s390/include/asm/ |
H A D | idals.h | 198 size_t left; in idal_buffer_to_user() local 203 left = copy_to_user(to, ib->data[i], IDA_BLOCK_SIZE); in idal_buffer_to_user() 204 if (left) in idal_buffer_to_user() 205 return left + count - IDA_BLOCK_SIZE; in idal_buffer_to_user() 218 size_t left; in idal_buffer_from_user() local 223 left = copy_from_user(ib->data[i], from, IDA_BLOCK_SIZE); in idal_buffer_from_user() 224 if (left) in idal_buffer_from_user() 225 return left + count - IDA_BLOCK_SIZE; in idal_buffer_from_user()
|
/kernel/linux/linux-6.6/arch/s390/include/asm/ |
H A D | idals.h | 210 size_t left; in idal_buffer_to_user() local 215 left = copy_to_user(to, ib->data[i], IDA_BLOCK_SIZE); in idal_buffer_to_user() 216 if (left) in idal_buffer_to_user() 217 return left + count - IDA_BLOCK_SIZE; in idal_buffer_to_user() 230 size_t left; in idal_buffer_from_user() local 235 left = copy_from_user(ib->data[i], from, IDA_BLOCK_SIZE); in idal_buffer_from_user() 236 if (left) in idal_buffer_from_user() 237 return left + count - IDA_BLOCK_SIZE; in idal_buffer_from_user()
|
/third_party/alsa-utils/alsamixer/ |
H A D | textbox.c | 187 int left; in move_x() local 189 left = current_left + delta; in move_x() 190 if (left < 0) in move_x() 191 left = 0; in move_x() 192 else if (left > max_scroll_x) in move_x() 193 left = max_scroll_x; in move_x() 194 if (left != current_left) { in move_x() 195 current_left = left; in move_x()
|
/third_party/skia/src/core/ |
H A D | SkBlitter_Sprite.cpp | 23 bool SkSpriteBlitter::setup(const SkPixmap& dst, int left, int top, const SkPaint& paint) { in setup() argument 25 fLeft = left; in setup() 114 bool setup(const SkPixmap& dst, int left, int top, const SkPaint& paint) override { 116 fLeft = left; 177 const SkPixmap& source, int left, int top, in ChooseSprite() 182 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap, in ChooseSprite() 191 return SkVMBlitter::Make(dst, paint, source,left,top, alloc, std::move(clipShader)); in ChooseSprite() 225 if (blitter && blitter->setup(dst, left,top, paint)) { in ChooseSprite() 229 return SkVMBlitter::Make(dst, paint, source,left,top, alloc, std::move(clipShader)); in ChooseSprite() 176 ChooseSprite(const SkPixmap& dst, const SkPaint& paint, const SkPixmap& source, int left, int top, SkArenaAlloc* alloc, sk_sp<SkShader> clipShader) ChooseSprite() argument
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | GrallocAndroid.cpp | 137 int GrallocModule::lock(buffer_handle_t handle, int usage, int left, int top, int width, int height, void **vaddr) in lock() argument 145 rect.left = left; in lock() 171 rect.left = left; in lock() 198 return m_module->lock(m_module, handle, usage, left, top, width, height, vaddr); in lock() 204 outRect.left = left; in lock()
|
/third_party/skia/third_party/externals/swiftshader/src/System/ |
H A D | GrallocAndroid.cpp | 137 int GrallocModule::lock(buffer_handle_t handle, int usage, int left, int top, int width, int height, void **vaddr) in lock() argument 145 rect.left = left; in lock() 171 rect.left = left; in lock() 198 return m_module->lock(m_module, handle, usage, left, top, width, height, vaddr); in lock() 204 outRect.left = left; in lock()
|
/third_party/python/Lib/turtledemo/ |
H A D | sorting_animate.py | 103 def partition(shelf, left, right, pivot_index): 106 store_index = left 107 for i in range(left, right): # range is non-inclusive of ending value 114 def qsort(shelf, left, right): 115 if left < right: 116 pivot_index = left 117 pivot_new_index = partition(shelf, left, right, pivot_index) 118 qsort(shelf, left, pivot_new_index - 1)
|
/third_party/rust/crates/nom/tests/ |
H A D | arithmetic_ast.rs | 38 Add(ref left, ref right) => write!(format, "{} + {}", left, right), 39 Sub(ref left, ref right) => write!(format, "{} - {}", left, right), 40 Mul(ref left, ref right) => write!(format, "{} * {}", left, right), 41 Div(ref left, ref right) => write!(format, "{} / {}", left, right), 52 Add(ref left, ref right) => write!(format, "({:?} + {:?})", left, righ [all...] |
/third_party/skia/src/pathops/ |
H A D | SkIntersections.h | 57 int conicHorizontal(const SkPoint a[3], SkScalar weight, SkScalar left, SkScalar right, in conicHorizontal() argument 62 return horizontal(conic, left, right, y, flipped); in conicHorizontal() 82 int cubicHorizontal(const SkPoint a[4], SkScalar left, SkScalar right, SkScalar y, in cubicHorizontal() argument 87 return horizontal(cubic, left, right, y, flipped); in cubicHorizontal() 132 int lineHorizontal(const SkPoint a[2], SkScalar left, SkScalar right, SkScalar y, in lineHorizontal() argument 137 return horizontal(line, left, right, y, flipped); in lineHorizontal() 168 int quadHorizontal(const SkPoint a[3], SkScalar left, SkScalar right, SkScalar y, in quadHorizontal() argument 173 return horizontal(quad, left, right, y, flipped); in quadHorizontal() 243 int horizontal(const SkDLine&, double left, double right, double y, bool flipped); 244 int horizontal(const SkDQuad&, double left, doubl [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
H A D | eap_pax.c | 123 size_t left, plen; in eap_pax_process_std_1() local 141 left = req_plen - sizeof(*req); in eap_pax_process_std_1() 143 if (left < 2 + EAP_PAX_RAND_LEN) { in eap_pax_process_std_1() 160 left -= 2; in eap_pax_process_std_1() 165 left -= EAP_PAX_RAND_LEN; in eap_pax_process_std_1() 167 if (left > 0) { in eap_pax_process_std_1() 169 pos, left); in eap_pax_process_std_1() 239 size_t left; in eap_pax_process_std_3() local 257 left = req_plen - sizeof(*req); in eap_pax_process_std_3() 259 if (left < in eap_pax_process_std_3() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
H A D | eap_pax.c | 123 size_t left, plen; in eap_pax_process_std_1() local 141 left = req_plen - sizeof(*req); in eap_pax_process_std_1() 143 if (left < 2 + EAP_PAX_RAND_LEN) { in eap_pax_process_std_1() 160 left -= 2; in eap_pax_process_std_1() 165 left -= EAP_PAX_RAND_LEN; in eap_pax_process_std_1() 167 if (left > 0) { in eap_pax_process_std_1() 169 pos, left); in eap_pax_process_std_1() 239 size_t left; in eap_pax_process_std_3() local 257 left = req_plen - sizeof(*req); in eap_pax_process_std_3() 259 if (left < in eap_pax_process_std_3() [all...] |
/third_party/zlib/contrib/puff/ |
H A D | puff.c | 124 * bit buffer, using shift left. 139 /* drop need bits and update buffer, always zero to seven bits left */ in bits() 271 int left; /* bits left in next or left to process */ in decode() local 275 left = s->bitcnt; in decode() 280 while (left--) { in decode() 295 left = (MAXBITS+1) - len; in decode() 296 if (left == 0) in decode() 301 if (left > in decode() 344 int left; /* number of possible codes left of current length */ construct() local [all...] |
/third_party/zlib/examples/ |
H A D | zran.c | 23 // in the uncompressed output. The compressed file is left open, and can then 81 off_t in, off_t out, unsigned left, in add_point() 119 if (left) in add_point() 120 memcpy(next->window, window + WINSIZE - left, left); in add_point() 121 if (left < WINSIZE) in add_point() 122 memcpy(next->window + left, window, WINSIZE - left); in add_point() 376 size_t left = len; // number of bytes left t in deflate_index_extract() local 80 add_point(struct deflate_index *index, int bits, off_t in, off_t out, unsigned left, unsigned char *window) add_point() argument [all...] |
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/ |
H A D | StableAPI.java | 607 for (int left = openParen + 1; left < closeParen;) { in purifyPrototype() 608 int right = in.indexOf(",", left + 1); // right edge in purifyPrototype() 612 // System.err.println("Considering " + left + " / " + right + " - " + closeParen in purifyPrototype() 613 // + " : " + in.substring(left, right)); in purifyPrototype() 615 if (left == right) in purifyPrototype() 620 if (rightCh == left) { // 1 ch- break in purifyPrototype() 621 out.append(in, left, right); in purifyPrototype() 626 while (nameEndCh > left && Character.isWhitespace(in.charAt(nameEndCh))) { in purifyPrototype() 630 while (nameStartCh > left in purifyPrototype() 707 fromLeftFun(Function left) fromLeftFun() argument 737 fromTwoFun(Function left, Function right) fromTwoFun() argument 934 fullJoin(Set<Function> left, Set<Function> right) fullJoin() argument [all...] |
/kernel/linux/linux-5.10/net/rds/ |
H A D | tcp_recv.c | 162 size_t left = len, to_copy; in rds_tcp_data_recv() local 171 while (left) { in rds_tcp_data_recv() 193 if (left && tc->t_tinc_hdr_rem) { in rds_tcp_data_recv() 194 to_copy = min(tc->t_tinc_hdr_rem, left); in rds_tcp_data_recv() 203 left -= to_copy; in rds_tcp_data_recv() 215 if (left && tc->t_tinc_data_rem) { in rds_tcp_data_recv() 216 to_copy = min(tc->t_tinc_data_rem, left); in rds_tcp_data_recv() 232 left -= to_copy; in rds_tcp_data_recv() 255 rdsdebug("returning len %zu left %zu skb len %d rx queue depth %d\n", in rds_tcp_data_recv() 256 len, left, sk in rds_tcp_data_recv() [all...] |
/kernel/linux/linux-6.6/net/rds/ |
H A D | tcp_recv.c | 163 size_t left = len, to_copy; in rds_tcp_data_recv() local 172 while (left) { in rds_tcp_data_recv() 194 if (left && tc->t_tinc_hdr_rem) { in rds_tcp_data_recv() 195 to_copy = min(tc->t_tinc_hdr_rem, left); in rds_tcp_data_recv() 204 left -= to_copy; in rds_tcp_data_recv() 216 if (left && tc->t_tinc_data_rem) { in rds_tcp_data_recv() 217 to_copy = min(tc->t_tinc_data_rem, left); in rds_tcp_data_recv() 233 left -= to_copy; in rds_tcp_data_recv() 256 rdsdebug("returning len %zu left %zu skb len %d rx queue depth %d\n", in rds_tcp_data_recv() 257 len, left, sk in rds_tcp_data_recv() [all...] |