Home
last modified time | relevance | path

Searched refs:left (Results 376 - 400 of 3131) sorted by relevance

1...<<11121314151617181920>>...126

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/
H A Deap_pax_common.c39 size_t num_blocks, left; in eap_pax_kdf() local
57 left = output_len; in eap_pax_kdf()
59 size_t clen = left > EAP_PAX_MAC_LEN ? EAP_PAX_MAC_LEN : left; in eap_pax_kdf()
64 left -= clen; in eap_pax_kdf()
/third_party/node/benchmark/child_process/
H A Dspawn-echo.js13 function go(n, left) {
14 if (--left === 0)
22 go(n, left);
/third_party/skia/docs/examples/
H A DRegion_Spanerator_next.cpp9 int left, right; in REG_FIDDLE()
10 bool result = spanner.next(&left, &right); in REG_FIDDLE()
12 if (result) SkDebugf(" left=%d right=%d", left, right); in REG_FIDDLE()
H A DIRect_containsNoEmptyCheck.cpp11 {contained.left(), contained.top(), contained.right(), contained.bottom()}); in REG_FIDDLE()
13 rect.left(), rect.top(), rect.right(), rect.bottom(), in REG_FIDDLE()
15 contained.left(), contained.top(), contained.right(), contained.bottom()); in REG_FIDDLE()
/third_party/node/deps/npm/node_modules/cli-table3/src/
H A Dcell.js63 setOption(style, tableStyle, 'padding-left', this);
243 let left = this.chars[this.x == 0 ? 'left' : 'middle'];
250 left = this.chars['rightMid'];
262 return this.stylizeLine(left, content, right);
265 stylizeLine(left, content, right) {
266 left = this.wrapWithStyleColors('border', left);
271 return left + content + right;
280 let left
[all...]
/third_party/libevdev/doc/html/search/
H A Dsearch.js141 var left = getXPos(searchField);
143 left += searchField.offsetWidth + 6;
148 left -= searchSelectWindow.offsetWidth;
149 searchSelectWindow.style.left = left + 'px';
154 var left = getXPos(searchField);
160 searchSelectWindow.style.left = left + 'px';
382 var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth;
385 left
[all...]
/third_party/skia/third_party/externals/oboe/docs/reference/search/
H A Dsearch.js138 var left = getXPos(searchField);
140 left += searchField.offsetWidth + 6;
145 left -= searchSelectWindow.offsetWidth;
146 searchSelectWindow.style.left = left + 'px';
151 var left = getXPos(searchField);
157 searchSelectWindow.style.left = left + 'px';
380 var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth;
383 left
[all...]
/third_party/skia/src/sksl/dsl/
H A DDSLExpression.cpp198 DSLPossibleExpression operator op(DSLExpression left, DSLExpression right) { \
199 return BinaryExpression::Convert(ThreadContext::Context(), left.release(), \
237 DSLPossibleExpression LogicalXor(DSLExpression left, DSLExpression right) { in LogicalXor() argument
238 return BinaryExpression::Convert(ThreadContext::Context(), left.release(), in LogicalXor()
257 DSLPossibleExpression operator,(DSLExpression left, DSLExpression right) { in operator ,() argument
258 return BinaryExpression::Convert(ThreadContext::Context(), left.release(), in operator ,()
262 DSLPossibleExpression operator,(DSLPossibleExpression left, DSLExpression right) { in operator ,() argument
264 DSLExpression(std::move(left)).release(), SkSL::Token::Kind::TK_COMMA, right.release()); in operator ,()
267 DSLPossibleExpression operator,(DSLExpression left, DSLPossibleExpression right) { in operator ,() argument
268 return BinaryExpression::Convert(ThreadContext::Context(), left in operator ,()
272 operator ,(DSLPossibleExpression left, DSLPossibleExpression right) operator ,() argument
[all...]
/third_party/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp184 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) { in horizontalIntersect() argument
185 addExactHorizontalEndPoints(left, right, axisIntercept); in horizontalIntersect()
187 addNearHorizontalEndPoints(left, right, axisIntercept); in horizontalIntersect()
194 double lineT = (pt.fX - left) / (right - left); in horizontalIntersect()
314 void addExactHorizontalEndPoints(double left, double right, double y) { in addExactHorizontalEndPoints() argument
316 double lineT = SkDLine::ExactPointH(fCubic[cIndex], left, right, y); in addExactHorizontalEndPoints()
325 void addNearHorizontalEndPoints(double left, double right, double y) { in addNearHorizontalEndPoints() argument
331 double lineT = SkDLine::NearPointH(fCubic[cIndex], left, right, y); in addNearHorizontalEndPoints()
418 int SkIntersections::horizontal(const SkDCubic& cubic, double left, doubl argument
[all...]
H A DSkDQuadLineIntersection.cpp198 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) { in horizontalIntersect() argument
199 addExactHorizontalEndPoints(left, right, axisIntercept); in horizontalIntersect()
201 addNearHorizontalEndPoints(left, right, axisIntercept); in horizontalIntersect()
208 double lineT = (pt.fX - left) / (right - left); in horizontalIntersect()
319 void addExactHorizontalEndPoints(double left, double right, double y) { in addExactHorizontalEndPoints() argument
321 double lineT = SkDLine::ExactPointH(fQuad[qIndex], left, right, y); in addExactHorizontalEndPoints()
330 void addNearHorizontalEndPoints(double left, double right, double y) { in addNearHorizontalEndPoints() argument
336 double lineT = SkDLine::NearPointH(fQuad[qIndex], left, right, y); in addNearHorizontalEndPoints()
423 int SkIntersections::horizontal(const SkDQuad& quad, double left, doubl argument
[all...]
H A DSkDConicLineIntersection.cpp72 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) { in horizontalIntersect() argument
73 this->addExactHorizontalEndPoints(left, right, axisIntercept); in horizontalIntersect()
75 this->addNearHorizontalEndPoints(left, right, axisIntercept); in horizontalIntersect()
84 double lineT = (pt.fX - left) / (right - left); in horizontalIntersect()
219 void addExactHorizontalEndPoints(double left, double right, double y) { in addExactHorizontalEndPoints() argument
221 double lineT = SkDLine::ExactPointH(fConic[cIndex], left, right, y); in addExactHorizontalEndPoints()
230 void addNearHorizontalEndPoints(double left, double right, double y) { in addNearHorizontalEndPoints() argument
236 double lineT = SkDLine::NearPointH(fConic[cIndex], left, right, y); in addNearHorizontalEndPoints()
347 int SkIntersections::horizontal(const SkDConic& conic, double left, doubl argument
[all...]
/kernel/linux/linux-5.10/crypto/
H A Decc.c206 /* Returns sign of left - right. */
207 int vli_cmp(const u64 *left, const u64 *right, unsigned int ndigits) in vli_cmp() argument
212 if (left[i] > right[i]) in vli_cmp()
214 else if (left[i] < right[i]) in vli_cmp()
256 /* Computes result = left + right, returning carry. Can modify in place. */
257 static u64 vli_add(u64 *result, const u64 *left, const u64 *right, in vli_add() argument
266 sum = left[i] + right[i] + carry; in vli_add()
267 if (sum != left[i]) in vli_add()
268 carry = (sum < left[i]); in vli_add()
276 /* Computes result = left
277 vli_uadd(u64 *result, const u64 *left, u64 right, unsigned int ndigits) vli_uadd() argument
299 vli_sub(u64 *result, const u64 *left, const u64 *right, unsigned int ndigits) vli_sub() argument
320 vli_usub(u64 *result, const u64 *left, u64 right, unsigned int ndigits) vli_usub() argument
339 mul_64_64(u64 left, u64 right) mul_64_64() argument
380 vli_mult(u64 *result, const u64 *left, const u64 *right, unsigned int ndigits) vli_mult() argument
417 vli_umult(u64 *result, const u64 *left, u32 right, unsigned int ndigits) vli_umult() argument
438 vli_square(u64 *result, const u64 *left, unsigned int ndigits) vli_square() argument
480 vli_mod_add(u64 *result, const u64 *left, const u64 *right, const u64 *mod, unsigned int ndigits) vli_mod_add() argument
497 vli_mod_sub(u64 *result, const u64 *left, const u64 *right, const u64 *mod, unsigned int ndigits) vli_mod_sub() argument
944 vli_mod_mult_slow(u64 *result, const u64 *left, const u64 *right, const u64 *mod, unsigned int ndigits) vli_mod_mult_slow() argument
955 vli_mod_mult_fast(u64 *result, const u64 *left, const u64 *right, const struct ecc_curve *curve) vli_mod_mult_fast() argument
965 vli_mod_square_fast(u64 *result, const u64 *left, const struct ecc_curve *curve) vli_mod_square_fast() argument
[all...]
/kernel/linux/linux-6.6/crypto/
H A Decc.c217 /* Returns sign of left - right. */
218 int vli_cmp(const u64 *left, const u64 *right, unsigned int ndigits) in vli_cmp() argument
223 if (left[i] > right[i]) in vli_cmp()
225 else if (left[i] < right[i]) in vli_cmp()
267 /* Computes result = left + right, returning carry. Can modify in place. */
268 static u64 vli_add(u64 *result, const u64 *left, const u64 *right, in vli_add() argument
277 sum = left[i] + right[i] + carry; in vli_add()
278 if (sum != left[i]) in vli_add()
279 carry = (sum < left[i]); in vli_add()
287 /* Computes result = left
288 vli_uadd(u64 *result, const u64 *left, u64 right, unsigned int ndigits) vli_uadd() argument
310 vli_sub(u64 *result, const u64 *left, const u64 *right, unsigned int ndigits) vli_sub() argument
331 vli_usub(u64 *result, const u64 *left, u64 right, unsigned int ndigits) vli_usub() argument
350 mul_64_64(u64 left, u64 right) mul_64_64() argument
391 vli_mult(u64 *result, const u64 *left, const u64 *right, unsigned int ndigits) vli_mult() argument
428 vli_umult(u64 *result, const u64 *left, u32 right, unsigned int ndigits) vli_umult() argument
449 vli_square(u64 *result, const u64 *left, unsigned int ndigits) vli_square() argument
491 vli_mod_add(u64 *result, const u64 *left, const u64 *right, const u64 *mod, unsigned int ndigits) vli_mod_add() argument
508 vli_mod_sub(u64 *result, const u64 *left, const u64 *right, const u64 *mod, unsigned int ndigits) vli_mod_sub() argument
955 vli_mod_mult_slow(u64 *result, const u64 *left, const u64 *right, const u64 *mod, unsigned int ndigits) vli_mod_mult_slow() argument
966 vli_mod_mult_fast(u64 *result, const u64 *left, const u64 *right, const struct ecc_curve *curve) vli_mod_mult_fast() argument
976 vli_mod_square_fast(u64 *result, const u64 *left, const struct ecc_curve *curve) vli_mod_square_fast() argument
[all...]
/kernel/linux/linux-5.10/sound/pci/ctxfi/
H A Dctdaio.c28 unsigned short left; member
33 [LINEO1] = {.left = 0x00, .right = 0x01},
34 [LINEO2] = {.left = 0x18, .right = 0x19},
35 [LINEO3] = {.left = 0x08, .right = 0x09},
36 [LINEO4] = {.left = 0x10, .right = 0x11},
37 [LINEIM] = {.left = 0x1b5, .right = 0x1bd},
38 [SPDIFOO] = {.left = 0x20, .right = 0x21},
39 [SPDIFIO] = {.left = 0x15, .right = 0x1d},
40 [SPDIFI1] = {.left = 0x95, .right = 0x9d},
44 [LINEO1] = {.left
[all...]
/kernel/linux/linux-6.6/sound/pci/ctxfi/
H A Dctdaio.c28 unsigned short left; member
33 [LINEO1] = {.left = 0x00, .right = 0x01},
34 [LINEO2] = {.left = 0x18, .right = 0x19},
35 [LINEO3] = {.left = 0x08, .right = 0x09},
36 [LINEO4] = {.left = 0x10, .right = 0x11},
37 [LINEIM] = {.left = 0x1b5, .right = 0x1bd},
38 [SPDIFOO] = {.left = 0x20, .right = 0x21},
39 [SPDIFIO] = {.left = 0x15, .right = 0x1d},
40 [SPDIFI1] = {.left = 0x95, .right = 0x9d},
44 [LINEO1] = {.left
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmagicyuv.c96 int *left, int *left_top, int max) in magicyuv_median_pred16()
101 l = *left; in magicyuv_median_pred16()
111 *left = l; in magicyuv_median_pred16()
128 int left, lefttop, top; in magy_decode_slice10() local
195 left = top + dst[0]; in magy_decode_slice10()
196 dst[0] = left & max; in magy_decode_slice10()
200 left += top - lefttop + dst[x]; in magy_decode_slice10()
201 dst[x] = left & max; in magy_decode_slice10()
214 lefttop = left = dst[0]; in magy_decode_slice10()
216 magicyuv_median_pred16(dst, dst - fake_stride, dst, width, &left, in magy_decode_slice10()
94 magicyuv_median_pred16(uint16_t *dst, const uint16_t *src1, const uint16_t *diff, intptr_t w, int *left, int *left_top, int max) magicyuv_median_pred16() argument
258 int left, lefttop, top; magy_decode_slice() local
[all...]
/third_party/python/Tools/demo/
H A Dsortvisu.py44 self.left = self.canvas.create_line(0, 0, 0, 0)
122 def show_left(self, left):
123 if not 0 <= left < self.size:
126 x1, y1, x2, y2 = self.items[left].position()
128 self.canvas.coords(self.left, (x1 - 2, 0, x1 - 2, 9999))
145 self.canvas.coords(self.left, (0, 0, 0, 0))
443 array.message("Pivot at left of partition")
445 left = first
454 array.message("Sweep left pointer")
455 left
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-aat-layout-kerx-table.hh63 hb_codepoint_t left; member
73 int ret = left.cmp (o.left); in cmp()
85 HBGlyphID16 left; member
95 int get_kerning (hb_codepoint_t left, hb_codepoint_t right, in get_kerning()
98 hb_glyph_pair_t pair = {left, right}; in get_kerning()
129 int get_kerning (hb_codepoint_t left, hb_codepoint_t right) const in get_kerning()
130 { return table.get_kerning (left, right, c); } in get_kerning()
380 int get_kerning (hb_codepoint_t left, hb_codepoint_t right, in get_kerning()
384 unsigned int l = (this+leftClassTable).get_class (left, num_glyph in get_kerning()
[all...]
/third_party/skia/src/core/
H A DSkRegion.cpp99 assert_sentinel(runs[3], false); // left
289 if (runs[3] == SkRegion_kRunTypeSentinel) { // should be first left... in setRuns()
294 assert_sentinel(runs[3], false); // left in setRuns()
308 assert_sentinel(stop[-4], false); // last left in setRuns()
373 // appear as a left-inteval (runs[0]) and should abort the search. in contains()
669 static void assert_valid_pair(int left, int rite) in assert_valid_pair() argument
671 SkASSERT(left == SkRegion_kRunTypeSentinel || left < rite); in assert_valid_pair()
674 #define assert_valid_pair(left, rite)
705 int inside, left, rit in next() local
791 int left = rec.fLeft; operate_on_span() local
1484 Spanerator(const SkRegion& rgn, int y, int left, int right) Spanerator() argument
1528 next(int* left, int* right) next() argument
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Denc.c249 const uint8_t* left, int size) { in HorizontalPred()
250 if (left != NULL) { in HorizontalPred()
253 memset(dst + j * BPS, left[j], size); in HorizontalPred()
260 static WEBP_INLINE void TrueMotion(uint8_t* dst, const uint8_t* left, in TrueMotion() argument
263 if (left != NULL) { in TrueMotion()
265 const uint8_t* const clip = clip1 + 255 - left[-1]; in TrueMotion()
267 const uint8_t* const clip_table = clip + left[y]; in TrueMotion()
275 HorizontalPred(dst, left, size); in TrueMotion()
278 // true motion without left samples (hence: with default 129 value) in TrueMotion()
290 static WEBP_INLINE void DCMode(uint8_t* dst, const uint8_t* left, in DCMode() argument
248 HorizontalPred(uint8_t* dst, const uint8_t* left, int size) HorizontalPred() argument
316 IntraChromaPreds_C(uint8_t* dst, const uint8_t* left, const uint8_t* top) IntraChromaPreds_C() argument
336 Intra16Preds_C(uint8_t* dst, const uint8_t* left, const uint8_t* top) Intra16Preds_C() argument
[all...]
/kernel/linux/linux-5.10/arch/csky/mm/
H A Ddma-mapping.c21 size_t left = size; in cache_op() local
24 size_t len = left; in cache_op()
44 left -= len; in cache_op()
45 } while (left); in cache_op()
/kernel/linux/linux-5.10/arch/nds32/lib/
H A Dmemset.S21 addi $p1, $p1, #-1 ! How many words left to copy
24 beqz $r2, end_memset ! No left byte to set
25 byte_set: ! Less than 4 bytes left to set
28 bnez $r2, byte_set ! Still bytes left to set
/kernel/linux/linux-5.10/arch/nds32/kernel/
H A Ddma.c18 size_t left = size; in cache_op() local
22 size_t len = left; in cache_op()
45 left -= len; in cache_op()
46 } while (left); in cache_op()
/kernel/linux/linux-6.6/arch/csky/mm/
H A Ddma-mapping.c20 size_t left = size; in cache_op() local
23 size_t len = left; in cache_op()
43 left -= len; in cache_op()
44 } while (left); in cache_op()
/kernel/linux/linux-5.10/include/linux/
H A Dprojid.h36 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()

Completed in 20 milliseconds

1...<<11121314151617181920>>...126