Home
last modified time | relevance | path

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

12345678910>>...118

/foundation/window/window_manager/utils/src/
H A Dwm_math.cpp32 Matrix3 operator*(const Matrix3& left, const Matrix3& right) in operator *() argument
36 { left.mat_[0][0] * right.mat_[0][0] + left.mat_[0][1] * right.mat_[1][0] + left.mat_[0][2] * right.mat_[2][0], in operator *()
37 left.mat_[0][0] * right.mat_[0][1] + left.mat_[0][1] * right.mat_[1][1] + left.mat_[0][2] * right.mat_[2][1], in operator *()
38 left.mat_[0][0] * right.mat_[0][2] + left.mat_[0][1] * right.mat_[1][2] + left in operator *()
58 operator *(const Matrix4& left, const Matrix4& right) operator *() argument
[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...]
/test/testfwk/arkxtest/uitest/record/
H A Dutils.h21 inline bool NearEqual(const double left, const double right, const double epsilon) in NearEqual() argument
23 return (std::abs(left - right) <= epsilon); in NearEqual()
27 constexpr bool NearEqual(const T& left, const T& right);
30 inline bool NearEqual<float>(const float& left, const float& right) in NearEqual() argument
33 return NearEqual(left, right, epsilon); in NearEqual()
37 inline bool NearEqual<double>(const double& left, const double& right) in NearEqual() argument
40 return NearEqual(left, right, epsilon); in NearEqual()
44 constexpr bool NearEqual(const T& left, const T& right) in NearEqual() argument
46 return left == right; in NearEqual()
54 inline bool NearEqual(const double left, cons argument
60 NearZero(const double left) NearZero() argument
66 LessOrEqual(double left, double right) LessOrEqual() argument
72 LessNotEqual(double left, double right) LessNotEqual() argument
78 GreatOrEqual(double left, double right) GreatOrEqual() argument
84 GreatNotEqual(double left, double right) GreatNotEqual() argument
[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/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/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...]
/foundation/arkui/ace_engine/frameworks/base/utils/
H A Dutils.h138 inline bool NearEqual(const double left, const double right, const double epsilon) in NearEqual() argument
140 return (std::abs(left - right) <= epsilon); in NearEqual()
144 constexpr bool NearEqual(const T& left, const T& right);
147 inline bool NearEqual<float>(const float& left, const float& right) in NearEqual() argument
150 return NearEqual(left, right, epsilon); in NearEqual()
154 inline bool NearEqual<double>(const double& left, const double& right) in NearEqual() argument
157 return NearEqual(left, right, epsilon); in NearEqual()
161 constexpr bool NearEqual(const T& left, const T& right) in NearEqual() argument
163 return left == right; in NearEqual()
171 inline bool NearEqual(const double left, cons argument
177 NearZero(const double left) NearZero() argument
183 LessOrEqual(double left, double right) LessOrEqual() argument
189 LessOrEqualCustomPrecision(double left, double right, double epsilon = 0.000001f) LessOrEqualCustomPrecision() argument
194 LessNotEqual(double left, double right) LessNotEqual() argument
200 LessNotEqualCustomPrecision(double left, double right, double epsilon = -0.000001f) LessNotEqualCustomPrecision() argument
205 GreatOrEqual(double left, double right) GreatOrEqual() argument
211 GreatOrEqualCustomPrecision(double left, double right, double epsilon = -0.000001f) GreatOrEqualCustomPrecision() argument
216 GreatNotEqual(double left, double right) GreatNotEqual() argument
222 GreatNotEqualCustomPrecision(double left, double right, double epsilon = 0.000001f) GreatNotEqualCustomPrecision() argument
[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...]
/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...]
/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/mesa3d/src/util/
H A Drb_tree.c82 while (node->left) in rb_node_minimum()
83 node = node->left; in rb_node_minimum()
116 } else if (u == p->left) { in rb_tree_splice()
117 p->left = v; in rb_tree_splice()
132 x->right = y->left; in rb_tree_rotate_left()
133 if (y->left) in rb_tree_rotate_left()
134 rb_node_set_parent(y->left, x); in rb_tree_rotate_left()
136 y->left = x; in rb_tree_rotate_left()
143 assert(y && y->left); in rb_tree_rotate_right()
145 struct rb_node *x = y->left; in rb_tree_rotate_right()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dmachine-operator-reducer.cc339 if (m.right().Is(0)) return Replace(m.left().node()); // x ror 0 => x in Reduce()
342 m.left().ResolvedValue(), m.right().ResolvedValue() & 31)); in Reduce()
352 return ReplaceBool(m.left().ResolvedValue() == in Reduce()
355 if (m.left().IsInt64Sub() && m.right().Is(0)) { // x - y == 0 => x == y in Reduce()
356 Int64BinopMatcher msub(m.left().node()); in Reduce()
357 node->ReplaceInput(0, msub.left().node()); in Reduce()
365 if (!ObjectsMayAlias(m.left().node(), m.right().node())) { in Reduce()
381 if (m.right().Is(1)) return Replace(m.left().node()); // x * 1 => x in Reduce()
383 return ReplaceInt32(base::MulWithWraparound(m.left().ResolvedValue(), in Reduce()
388 node->ReplaceInput(1, m.left() in Reduce()
1414 uint32_t left = m.left().ResolvedValue(); ReduceWord32Comparisons() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dedge.h30 // Types of padding and margin. Contains four directions: left, top, right and bottom.
38 Edge(double left, double top, double right, double bottom, DimensionUnit unit = DimensionUnit::PX) in Edge() argument
39 : left_(Dimension(left, unit)), top_(Dimension(top, unit)), right_(Dimension(right, unit)), in Edge()
41 Edge(const std::string& left, const std::string& top, const std::string& right, const std::string& bottom, in Edge() argument
42 DimensionUnit unit = DimensionUnit::CALC) : left_(CalcDimension(left, unit)), top_(CalcDimension(top, unit)), in Edge()
44 Edge(const CalcDimension& left, const CalcDimension& top, const CalcDimension& right, const CalcDimension& bottom) in Edge() argument
45 : left_(left), top_(top), right_(right), bottom_(bottom) {} in Edge()
46 Edge(const Dimension& left, const Dimension& top, const Dimension& right, const Dimension& bottom, in Edge() argument
48 : left_(AnimatableDimension(left, option)), top_(AnimatableDimension(top, option)), in Edge()
50 Edge(const CalcDimension& left, cons in Edge() argument
78 SetLeft(const AnimatableDimension& left) SetLeft() argument
83 SetLeft(const CalcDimension& left) SetLeft() argument
89 SetLeft(const Dimension& left) SetLeft() argument
203 EdgePx(double left, double top, double right, double bottom) EdgePx() argument
204 EdgePx(const std::string& left, const std::string& top, const std::string& right, const std::string& bottom) EdgePx() argument
[all...]
/third_party/ffmpeg/libavcodec/alpha/
H A Dme_cmp_mvi_asm.S65 t0: left_u -> left lo -> left
68 t3: ref left
71 t5: left_u -> left lo -> left
74 t8: ref left
77 ta: left hi
79 tc: error left
86 ldq t3, 0(a1) # ref left
94 ldq t8, 0(a1) # ref left
[all...]
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/util/
H A Dbase64_encode.h36 inline void ToBase64(const uint8_t* threeBytes, char* output, signed left) in ToBase64() argument
41 output[2U] = left > 1 ? (TO_BASE64[((threeBytes[1u] << 2u) | (threeBytes[2u] >> 6u)) & 0x3f]) : '='; in ToBase64()
42 output[3U] = left > 2 ? TO_BASE64[threeBytes[2u] & 0x3f] : '='; in ToBase64()
45 inline signed EncodeTriplets(char*& dst, const uint8_t*& src, signed left) in EncodeTriplets() argument
47 for (; left >= 3; left -= 3) { in EncodeTriplets()
52 return left; in EncodeTriplets()
55 inline void FillTriplet(uint8_t* dst, const uint8_t*& src, signed left) in FillTriplet() argument
57 switch (left) { in FillTriplet()
65 inline void EncodeTail(char* dst, const uint8_t* src, signed left) in EncodeTail() argument
86 signed left = static_cast<signed>(binaryData.size()); Base64Encode() local
[all...]
/third_party/gn/src/gn/
H A Doperators.cc92 "This thing on the left is not an identifier or accessor."); in Init()
210 Err result(op_node->left()->GetRange(), in MakeOverwriteError()
226 const Value& left, in MakeIncompatibleTypeError()
229 Value::DescribeType(left.type()) + "> " + in MakeIncompatibleTypeError()
232 if (left.type() == Value::LIST) { in MakeIncompatibleTypeError()
337 // the left value. This is set to true when doing +, and false when doing +=.
339 Value left, in ExecutePlus()
344 if (left.type() == Value::INTEGER) { in ExecutePlus()
347 return Value(op_node, left.int_value() + right.int_value()); in ExecutePlus()
350 return Value(op_node, base::Int64ToString(left in ExecutePlus()
225 MakeIncompatibleTypeError(const BinaryOpNode* op_node, const Value& left, const Value& right) MakeIncompatibleTypeError() argument
338 ExecutePlus(const BinaryOpNode* op_node, Value left, Value right, bool allow_left_type_conversion, Err* err) ExecutePlus() argument
389 ExecuteMinus(const BinaryOpNode* op_node, Value left, const Value& right, Err* err) ExecuteMinus() argument
513 ExecuteEqualsEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) ExecuteEqualsEquals() argument
523 ExecuteNotEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) ExecuteNotEquals() argument
534 FillNeedsTwoIntegersError(const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) FillNeedsTwoIntegersError() argument
545 ExecuteLessEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) ExecuteLessEquals() argument
555 ExecuteGreaterEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) ExecuteGreaterEquals() argument
565 ExecuteGreater(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) ExecuteGreater() argument
575 ExecuteLess(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) ExecuteLess() argument
592 Value left = GetValueOrFillError(op_node, left_node, "left", scope, err); ExecuteOr() local
622 Value left = GetValueOrFillError(op_node, left_node, "left", scope, err); ExecuteAnd() local
666 ExecuteBinaryOperator(Scope* scope, const BinaryOpNode* op_node, const ParseNode* left, const ParseNode* right, Err* err) ExecuteBinaryOperator() argument
[all...]
/third_party/ffmpeg/libavutil/
H A Dqsort.h45 type *left = start+1;\
60 while(left <= right){\
61 while(left<=right && cmp(left, end-1) < 0)\
62 left++;\
63 while(left<=right && cmp(right, end-1) > 0)\
65 if(left <= right){\
66 FFSWAP(type, *left, *right);\
67 left++;\
71 FFSWAP(type, end[-1], *left);\
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DRopeByteString.java134 private final ByteString left; field in RopeByteString
143 * @param left string on the left of this node, should have {@code size() > 0}
146 private RopeByteString(ByteString left, ByteString right) { in RopeByteString() argument
147 this.left = left; in RopeByteString()
149 leftLength = left.size(); in RopeByteString()
151 treeDepth = Math.max(left.getTreeDepth(), right.getTreeDepth()) + 1; in RopeByteString()
163 * @param left string on the left
167 concatenate(ByteString left, ByteString right) concatenate() argument
230 concatenateBytes(ByteString left, ByteString right) concatenateBytes() argument
249 newInstanceForTest(ByteString left, ByteString right) newInstanceForTest() argument
629 balance(ByteString left, ByteString right) balance() argument
[all...]
/third_party/f2fs-tools/fsck/
H A Ddict.c51 #define left dict_left macro
69 #define dict_root(D) ((D)->nilnode.left)
77 * Perform a ``left rotation'' adjustment on the tree. The given node P and
78 * its right child C are rearranged so that the P instead becomes the left
79 * child of C. The left subtree of C is inherited as the new right subtree
87 upper->right = lowleft = lower->left; in rotate_left()
93 the sentinel nil node, and root->parent->left points back to root */ in rotate_left()
95 if (upper == upparent->left) { in rotate_left()
96 upparent->left = lower; in rotate_left()
102 lower->left in rotate_left()
411 dict_similar(const dict_t *left, const dict_t *right) dict_similar() argument
839 dnode_t *nil = dict_nil(dict), *root = dict_root(dict), *left; dict_first() local
871 dnode_t *nil = dict_nil(dict), *parent, *left; dict_next() local
[all...]
/third_party/zlib/examples/
H A Dgzjoin.c81 unsigned left; /* bytes remaining at next */ member
113 in->left = 0; in bopen()
127 if (in->left != 0) in bload()
131 len = (long)read(in->fd, in->buf + in->left, CHUNK - in->left); in bload()
134 in->left += (unsigned)len; in bload()
135 } while (len != 0 && in->left < CHUNK); in bload()
140 #define bget(in) (in->left ? 0 : bload(in), \
141 in->left ? (in->left
176 unsigned left; bskip() local
[all...]

Completed in 14 milliseconds

12345678910>>...118