Home
last modified time | relevance | path

Searched refs:left (Results 1 - 25 of 3131) sorted by relevance

12345678910>>...126

/kernel/linux/linux-5.10/include/kunit/
H A Dtest.h740 left, \
746 typeof(left) __left = (left); \
756 #left, \
768 left, \
776 left, ==, right, \
784 left, \
792 left, !=, right, \
800 left, \
808 left, <, righ
[all...]
/third_party/toybox/kconfig/
H A Dexpr.c20 e->left.sym = sym; in expr_alloc_symbol()
29 e->left.expr = ce; in expr_alloc_one()
38 e->left.expr = e1; in expr_alloc_two()
48 e->left.sym = s1; in expr_alloc_comp()
78 e->left = org->left; in expr_copy()
81 e->left.expr = expr_copy(org->left.expr); in expr_copy()
85 e->left.sym = org->left in expr_copy()
[all...]
/kernel/linux/linux-6.6/include/kunit/
H A Dtest.h680 left, \
686 const typeof(left) __left = (left); \
690 .left_text = #left, \
710 left, \
719 left, op, right, \
725 left, \
734 left, op, right, \
740 left, \
746 const char *__left = (left); \
[all...]
/kernel/linux/linux-5.10/include/media/
H A Dv4l2-rect.h62 if (r->left < boundary->left) in v4l2_rect_map_inside()
63 r->left = boundary->left; in v4l2_rect_map_inside()
66 if (r->left + r->width > boundary->left + boundary->width) in v4l2_rect_map_inside()
67 r->left = boundary->left + boundary->width - r->width; in v4l2_rect_map_inside()
95 return r1->top == r2->top && r1->left == r2->left; in v4l2_rect_same_position()
[all...]
/kernel/linux/linux-6.6/include/media/
H A Dv4l2-rect.h62 if (r->left < boundary->left) in v4l2_rect_map_inside()
63 r->left = boundary->left; in v4l2_rect_map_inside()
66 if (r->left + r->width > boundary->left + boundary->width) in v4l2_rect_map_inside()
67 r->left = boundary->left + boundary->width - r->width; in v4l2_rect_map_inside()
95 return r1->top == r2->top && r1->left == r2->left; in v4l2_rect_same_position()
[all...]
/third_party/zlib/contrib/blast/
H A Dblast.c46 unsigned left; /* available input at in */ member
70 * bit buffer, using shift left.
79 if (s->left == 0) { in bits()
80 s->left = s->infun(s->inhow, &(s->in)); in bits()
81 if (s->left == 0) longjmp(s->env, 1); /* out of input */ in bits()
84 s->left--; in bits()
88 /* drop need bits and update buffer, always zero to seven bits left */ in bits()
137 int left; /* bits left in next or left t in decode() local
195 int left; /* number of possible codes left of current length */ construct() local
383 blast(blast_in infun, void *inhow, blast_out outfun, void *outhow, unsigned *left, unsigned char **in) blast() argument
449 unsigned left; main() local
[all...]
/third_party/skia/src/core/
H A DSkStringView.cpp13 bool operator==(string_view left, string_view right) { in operator ==() argument
14 if (left.length() != right.length()) { in operator ==()
17 return !string_view::traits_type::compare(left.data(), right.data(), left.length()); in operator ==()
20 bool operator!=(string_view left, string_view right) { in operator !=() argument
21 return !(left == right); in operator !=()
24 bool operator<(string_view left, string_view right) { in operator <() argument
25 int result = string_view::traits_type::compare(left.data(), right.data(), in operator <()
26 std::min(left.length(), right.length())); in operator <()
28 result = left in operator <()
33 operator <=(string_view left, string_view right) operator <=() argument
37 operator >(string_view left, string_view right) operator >() argument
41 operator >=(string_view left, string_view right) operator >=() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dhevcpred_template.c103 pixel *left = left_array + 1; in intra_pred() local
162 memset(left, 128, 2 * MAX_TB_SIZE*sizeof(pixel)); in intra_pred()
167 left[-1] = POS(-1, -1); in intra_pred()
168 top[-1] = left[-1]; in intra_pred()
179 left[i] = POS(-1, i); in intra_pred()
182 left[i] = POS(-1, i); in intra_pred()
183 EXTEND(left + size + bottom_left_size, POS(-1, size + bottom_left_size - 1), in intra_pred()
210 left[-1] = top[-1]; in intra_pred()
223 left[-1] = top[-1]; in intra_pred()
225 left[ in intra_pred()
368 const pixel *left = (const pixel *)_left; pred_planar() local
398 const pixel *left = (const pixel *)_left; pred_dc() local
430 const pixel *left = (const pixel *)_left; pred_angular() local
514 pred_angular_0(uint8_t *src, const uint8_t *top, const uint8_t *left, ptrdiff_t stride, int c_idx, int mode) pred_angular_0() argument
521 pred_angular_1(uint8_t *src, const uint8_t *top, const uint8_t *left, ptrdiff_t stride, int c_idx, int mode) pred_angular_1() argument
528 pred_angular_2(uint8_t *src, const uint8_t *top, const uint8_t *left, ptrdiff_t stride, int c_idx, int mode) pred_angular_2() argument
535 pred_angular_3(uint8_t *src, const uint8_t *top, const uint8_t *left, ptrdiff_t stride, int c_idx, int mode) pred_angular_3() argument
[all...]
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_vec.c93 size_t *pdstcnt, size_t left, size_t maxcnt) { in ngtcp2_vec_split()
100 if (left >= src[i].len) { in ngtcp2_vec_split()
101 left -= src[i].len; in ngtcp2_vec_split()
118 if (left == 0) { in ngtcp2_vec_split()
131 dst[0].len -= left; in ngtcp2_vec_split()
132 dst[0].base += left; in ngtcp2_vec_split()
133 src[i].len = left; in ngtcp2_vec_split()
136 extra -= left; in ngtcp2_vec_split()
146 size_t *psrccnt, size_t left, size_t maxcnt) { in ngtcp2_vec_merge()
147 size_t orig_left = left; in ngtcp2_vec_merge()
92 ngtcp2_vec_split(ngtcp2_vec *src, size_t *psrccnt, ngtcp2_vec *dst, size_t *pdstcnt, size_t left, size_t maxcnt) ngtcp2_vec_split() argument
145 ngtcp2_vec_merge(ngtcp2_vec *dst, size_t *pdstcnt, ngtcp2_vec *src, size_t *psrccnt, size_t left, size_t maxcnt) ngtcp2_vec_merge() argument
218 ngtcp2_vec_copy_at_most(ngtcp2_vec *dst, size_t dstcnt, const ngtcp2_vec *src, size_t srccnt, size_t left) ngtcp2_vec_copy_at_most() argument
[all...]
/third_party/skia/src/sksl/ir/
H A DSkSLBinaryExpression.cpp23 static bool is_low_precision_matrix_vector_multiply(const Expression& left, in is_low_precision_matrix_vector_multiply() argument
29 left.type().isMatrix() && in is_low_precision_matrix_vector_multiply()
31 left.type().rows() == right.type().columns() && in is_low_precision_matrix_vector_multiply()
32 Analysis::IsTrivialExpression(left) && in is_low_precision_matrix_vector_multiply()
37 const Expression& left, in rewrite_matrix_vector_multiply()
43 for (int n = 0; n < left.type().rows(); ++n) { in rewrite_matrix_vector_multiply()
46 context, left.clone(), Literal::MakeInt(context, left.fLine, n)); in rewrite_matrix_vector_multiply()
70 std::unique_ptr<Expression> left, in Convert()
73 if (!left || !righ in Convert()
36 rewrite_matrix_vector_multiply(const Context& context, const Expression& left, const Operator& op, const Expression& right, const Type& resultType) rewrite_matrix_vector_multiply() argument
69 Convert(const Context& context, std::unique_ptr<Expression> left, Operator op, std::unique_ptr<Expression> right) Convert() argument
136 Make(const Context& context, std::unique_ptr<Expression> left, Operator op, std::unique_ptr<Expression> right) Make() argument
150 Make(const Context& context, std::unique_ptr<Expression> left, Operator op, std::unique_ptr<Expression> right, const Type* resultType) Make() argument
[all...]
/kernel/linux/linux-5.10/arch/parisc/math-emu/
H A Dsfsub.c42 register unsigned int left, right, result, extent; in sgl_fsub() local
50 left = *leftptr; in sgl_fsub()
55 Sgl_xortointp1(left,right,/*to*/save); in sgl_fsub()
60 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT) in sgl_fsub()
62 if (Sgl_iszero_mantissa(left)) in sgl_fsub()
80 *dstptr = left; in sgl_fsub()
89 if (Sgl_isone_signaling(left)) in sgl_fsub()
95 Sgl_set_quiet(left); in sgl_fsub()
113 *dstptr = left; in sgl_fsub()
116 } /* End left Na in sgl_fsub()
[all...]
H A Dsfadd.c42 register unsigned int left, right, result, extent; in sgl_fadd() local
52 left = *leftptr; in sgl_fadd()
57 Sgl_xortointp1(left,right,/*to*/save); in sgl_fadd()
62 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT) in sgl_fadd()
64 if (Sgl_iszero_mantissa(left)) in sgl_fadd()
82 *dstptr = left; in sgl_fadd()
91 if (Sgl_isone_signaling(left)) in sgl_fadd()
97 Sgl_set_quiet(left); in sgl_fadd()
115 *dstptr = left; in sgl_fadd()
118 } /* End left Na in sgl_fadd()
[all...]
H A Dsfcmp.c42 register unsigned int left, right; in sgl_fcmp() local
46 left = *leftptr; in sgl_fcmp()
52 if( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
58 if( ( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
59 && Sgl_isnotzero_mantissa(left) in sgl_fcmp()
60 && (Exception(cond) || Sgl_isone_signaling(left))) in sgl_fcmp()
76 else if( ((Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
77 && Sgl_isnotzero_mantissa(left)) in sgl_fcmp()
90 Sgl_xortointp1(left,right,xorresult); in sgl_fcmp()
93 /* left negativ in sgl_fcmp()
[all...]
/kernel/linux/linux-6.6/arch/parisc/math-emu/
H A Dsfsub.c42 register unsigned int left, right, result, extent; in sgl_fsub() local
50 left = *leftptr; in sgl_fsub()
55 Sgl_xortointp1(left,right,/*to*/save); in sgl_fsub()
60 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT) in sgl_fsub()
62 if (Sgl_iszero_mantissa(left)) in sgl_fsub()
80 *dstptr = left; in sgl_fsub()
89 if (Sgl_isone_signaling(left)) in sgl_fsub()
95 Sgl_set_quiet(left); in sgl_fsub()
113 *dstptr = left; in sgl_fsub()
116 } /* End left Na in sgl_fsub()
[all...]
H A Dsfadd.c42 register unsigned int left, right, result, extent; in sgl_fadd() local
52 left = *leftptr; in sgl_fadd()
57 Sgl_xortointp1(left,right,/*to*/save); in sgl_fadd()
62 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT) in sgl_fadd()
64 if (Sgl_iszero_mantissa(left)) in sgl_fadd()
82 *dstptr = left; in sgl_fadd()
91 if (Sgl_isone_signaling(left)) in sgl_fadd()
97 Sgl_set_quiet(left); in sgl_fadd()
115 *dstptr = left; in sgl_fadd()
118 } /* End left Na in sgl_fadd()
[all...]
H A Dsfcmp.c42 register unsigned int left, right; in sgl_fcmp() local
46 left = *leftptr; in sgl_fcmp()
52 if( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
58 if( ( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
59 && Sgl_isnotzero_mantissa(left) in sgl_fcmp()
60 && (Exception(cond) || Sgl_isone_signaling(left))) in sgl_fcmp()
76 else if( ((Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
77 && Sgl_isnotzero_mantissa(left)) in sgl_fcmp()
90 Sgl_xortointp1(left,right,xorresult); in sgl_fcmp()
93 /* left negativ in sgl_fcmp()
[all...]
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbio_cb.c25 int left; in BIO_debug_callback_ex() local
31 left = BIO_snprintf(buf, sizeof(buf), "BIO[%p]: ", (void *)bio); in BIO_debug_callback_ex()
34 if (left < 0) in BIO_debug_callback_ex()
35 left = 0; in BIO_debug_callback_ex()
36 p = buf + left; in BIO_debug_callback_ex()
37 left = sizeof(buf) - left; in BIO_debug_callback_ex()
41 BIO_snprintf(p, left, "Free - %s\n", bio->method->name); in BIO_debug_callback_ex()
45 BIO_snprintf(p, left, "read(%d,%zu) - %s fd=%d\n", in BIO_debug_callback_ex()
49 BIO_snprintf(p, left, "rea in BIO_debug_callback_ex()
[all...]
/third_party/openssl/crypto/bio/
H A Dbio_cb.c25 int left; in BIO_debug_callback_ex() local
31 left = BIO_snprintf(buf, sizeof(buf), "BIO[%p]: ", (void *)bio); in BIO_debug_callback_ex()
34 if (left < 0) in BIO_debug_callback_ex()
35 left = 0; in BIO_debug_callback_ex()
36 p = buf + left; in BIO_debug_callback_ex()
37 left = sizeof(buf) - left; in BIO_debug_callback_ex()
41 BIO_snprintf(p, left, "Free - %s\n", bio->method->name); in BIO_debug_callback_ex()
45 BIO_snprintf(p, left, "read(%d,%zu) - %s fd=%d\n", in BIO_debug_callback_ex()
49 BIO_snprintf(p, left, "rea in BIO_debug_callback_ex()
[all...]
/third_party/skia/src/sksl/
H A DSkSLConstantFolder.cpp29 static std::unique_ptr<Expression> eliminate_no_op_boolean(const Expression& left, in eliminate_no_op_boolean() argument
41 return left.clone(); in eliminate_no_op_boolean()
47 static std::unique_ptr<Expression> short_circuit_boolean(const Expression& left, in short_circuit_boolean() argument
50 bool leftVal = left.as<Literal>().boolValue(); in short_circuit_boolean()
52 // When the literal is on the left, we can sometimes eliminate the other expression entirely. in short_circuit_boolean()
56 return left.clone(); in short_circuit_boolean()
61 return eliminate_no_op_boolean(right, op, left); in short_circuit_boolean()
65 const Expression& left, in simplify_vector_equality()
71 switch (left.compareConstant(right)) { in simplify_vector_equality()
77 return Literal::MakeBool(context, left in simplify_vector_equality()
64 simplify_vector_equality(const Context& context, const Expression& left, Operator op, const Expression& right) simplify_vector_equality() argument
86 simplify_vector(const Context& context, const Expression& left, Operator op, const Expression& right) simplify_vector() argument
231 simplify_no_op_arithmetic(const Context& context, const Expression& left, Operator op, const Expression& right, const Type& resultType) simplify_no_op_arithmetic() argument
340 const Expression* left = GetConstantValueForVariable(leftExpr); Simplify() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp43 const SUnit *pickBest(const SUnit *left, const SUnit *right);
131 // Return -1 if left has higher priority, 1 if right has higher priority.
133 static int BUCompareLatency(const SUnit *left, const SUnit *right) { in BUCompareLatency() argument
136 int LHeight = (int)left->getHeight(); in BUCompareLatency()
149 int LDepth = left->getDepth(); in BUCompareLatency()
152 LLVM_DEBUG(dbgs() << " Comparing latency of SU (" << left->NodeNum in BUCompareLatency()
157 if (left->Latency != right->Latency) in BUCompareLatency()
158 return left->Latency > right->Latency ? 1 : -1; in BUCompareLatency()
163 const SUnit *GCNILPScheduler::pickBest(const SUnit *left, const SUnit *right) in pickBest() argument
170 int spread = (int)left in pickBest()
[all...]
/kernel/linux/linux-5.10/scripts/kconfig/
H A Dexpr.c22 e->left.sym = sym; in expr_alloc_symbol()
30 e->left.expr = ce; in expr_alloc_one()
38 e->left.expr = e1; in expr_alloc_two()
47 e->left.sym = s1; in expr_alloc_comp()
77 e->left = org->left; in expr_copy()
80 e->left.expr = expr_copy(org->left.expr); in expr_copy()
88 e->left.sym = org->left in expr_copy()
[all...]
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dexpr.c22 e->left.sym = sym; in expr_alloc_symbol()
30 e->left.expr = ce; in expr_alloc_one()
38 e->left.expr = e1; in expr_alloc_two()
47 e->left.sym = s1; in expr_alloc_comp()
77 e->left = org->left; in expr_copy()
80 e->left.expr = expr_copy(org->left.expr); in expr_copy()
88 e->left.sym = org->left in expr_copy()
[all...]
/third_party/backends/lib/
H A Dsnprintf.c279 on the left with zeros rather than blanks. If a
284 value is to be left adjusted on the field boundary. Except
286 the right with blanks, rather than on the left with
290 - A space, specifying that a blank should be left before
301 with spaces on the left (or right, if the
302 left-adjustment flag has been given) to fill out
345 field width or precision. A negative field width is treated as a left
358 it is padded on the left with zeros.
540 static void dopr( int visible_control, char **buffer, int *left,
542 static void fmtstr( int visible_control, char **buffer, int *left,
565 int left; plp_vsnprintf() local
591 int left; plp_unsafe_vsnprintf() local
658 dopr( int visible_control, char **buffer, int *left, const char *format, va_list args ) dopr() argument
801 fmtstr( int visible_control, char **buffer, int *left, char *value, int ljust, int len, int zpad, int precision ) fmtstr() argument
841 fmtnum( char **buffer, int *left, union value *value, int base, int dosign, int ljust, int len, int zpad, int precision ) fmtnum() argument
907 fmtquad( char **buffer, int *left, union value *value, int base, int dosign, int ljust, int len, int zpad, int precision ) fmtquad() argument
979 fmtdouble( char **buffer, int *left, int fmt, double value, int ljust, int len, int zpad, int precision ) fmtdouble() argument
1010 dostr( char **buffer, int *left, char *str ) dostr() argument
1015 dopr_outch( char **buffer, int *left, int c ) dopr_outch() argument
[all...]
/third_party/skia/include/sksl/
H A DDSLExpression.h175 DSLPossibleExpression operator+(DSLExpression left, DSLExpression right);
177 DSLPossibleExpression operator+=(DSLExpression left, DSLExpression right);
178 DSLPossibleExpression operator-(DSLExpression left, DSLExpression right);
180 DSLPossibleExpression operator-=(DSLExpression left, DSLExpression right);
181 DSLPossibleExpression operator*(DSLExpression left, DSLExpression right);
182 DSLPossibleExpression operator*=(DSLExpression left, DSLExpression right);
183 DSLPossibleExpression operator/(DSLExpression left, DSLExpression right);
184 DSLPossibleExpression operator/=(DSLExpression left, DSLExpression right);
185 DSLPossibleExpression operator%(DSLExpression left, DSLExpression right);
186 DSLPossibleExpression operator%=(DSLExpression left, DSLExpressio
[all...]
/kernel/linux/linux-5.10/net/sunrpc/
H A Dsysctl.c90 size_t left, len; in proc_dodebug() local
97 left = *lenp; in proc_dodebug()
101 while (left && isspace(*p)) { in proc_dodebug()
102 left--; in proc_dodebug()
105 if (!left) in proc_dodebug()
108 if (left > sizeof(tmpbuf) - 1) in proc_dodebug()
110 memcpy(tmpbuf, p, left); in proc_dodebug()
111 tmpbuf[left] = '\0'; in proc_dodebug()
115 left -= (s - tmpbuf); in proc_dodebug()
116 if (left in proc_dodebug()
[all...]

Completed in 15 milliseconds

12345678910>>...126