Home
last modified time | relevance | path

Searched refs:left (Results 651 - 675 of 3141) sorted by relevance

1...<<21222324252627282930>>...126

/third_party/skia/docs/examples/
H A DIRect_makeOffset.cpp8 SkDebugf("rect: %d, %d, %d, %d isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
11 SkDebugf("rect: %d, %d, %d, %d isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
H A DIRect_makeOutset.cpp8 SkDebugf("rect: %d, %d, %d, %d isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
11 SkDebugf("rect: %d, %d, %d, %d isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
H A DIRect_makeInset.cpp8 SkDebugf("rect: %d, %d, %d, %d isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
11 SkDebugf("rect: %d, %d, %d, %d isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
H A DIRect_isEmpty64.cpp9 SkDebugf("rect: {%d, %d, %d, %d} is" "%s empty\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
12 SkDebugf("sorted: {%d, %d, %d, %d} is" "%s empty\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
H A DIRect_isEmpty.cpp9 SkDebugf("rect: {%d, %d, %d, %d} is" "%s empty\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
12 SkDebugf("sorted: {%d, %d, %d, %d} is" "%s empty\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
H A DIRect_containsNoEmptyCheck_2.cpp11 rect.left(), rect.top(), rect.right(), rect.bottom(), in REG_FIDDLE()
13 contained.left(), contained.top(), contained.right(), contained.bottom()); in REG_FIDDLE()
H A DIRect_contains_4.cpp11 rect.left(), rect.top(), rect.right(), rect.bottom(), in REG_FIDDLE()
13 contained.left(), contained.top(), contained.right(), contained.bottom()); in REG_FIDDLE()
H A DIRect_contains_3.cpp11 rect.left(), rect.top(), rect.right(), rect.bottom(), in REG_FIDDLE()
13 contained.left(), contained.top(), contained.right(), contained.bottom()); in REG_FIDDLE()
H A DIRect_MakeXYWH.cpp8 SkDebugf("rect: %d, %d, %d, %d isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
11 SkDebugf("rect: %d, %d, %d, %d isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
/kernel/linux/linux-5.10/sound/isa/sb/
H A Dsb_mixer.c117 unsigned char left, right; in snd_sbmixer_get_double() local
120 left = (snd_sbmixer_read(sb, left_reg) >> left_shift) & mask; in snd_sbmixer_get_double()
123 ucontrol->value.integer.value[0] = left; in snd_sbmixer_get_double()
138 unsigned char left, right, oleft, oright; in snd_sbmixer_put_double() local
140 left = (ucontrol->value.integer.value[0] & mask) << left_shift; in snd_sbmixer_put_double()
145 left = (oleft & ~((mask << left_shift) | (mask << right_shift))) | left | right; in snd_sbmixer_put_double()
146 change = left != oleft; in snd_sbmixer_put_double()
148 snd_sbmixer_write(sb, left_reg, left); in snd_sbmixer_put_double()
152 left in snd_sbmixer_put_double()
[all...]
/kernel/linux/linux-6.6/sound/isa/sb/
H A Dsb_mixer.c117 unsigned char left, right; in snd_sbmixer_get_double() local
120 left = (snd_sbmixer_read(sb, left_reg) >> left_shift) & mask; in snd_sbmixer_get_double()
123 ucontrol->value.integer.value[0] = left; in snd_sbmixer_get_double()
138 unsigned char left, right, oleft, oright; in snd_sbmixer_put_double() local
140 left = (ucontrol->value.integer.value[0] & mask) << left_shift; in snd_sbmixer_put_double()
145 left = (oleft & ~((mask << left_shift) | (mask << right_shift))) | left | right; in snd_sbmixer_put_double()
146 change = left != oleft; in snd_sbmixer_put_double()
148 snd_sbmixer_write(sb, left_reg, left); in snd_sbmixer_put_double()
152 left in snd_sbmixer_put_double()
[all...]
/third_party/python/Modules/_ctypes/
H A D_ctypes_test.c710 long left; member
720 if (pt.x < prc->left) in PointInRect()
731 EXPORT(long left = 10);
740 if (ar.left + br->left + dr.left + er->left + gr.left != left * 5) in EXPORT()
742 ar.left in EXPORT()
[all...]
/kernel/linux/linux-5.10/arch/arc/kernel/
H A Dperf_event.c246 s64 left = local64_read(&hwc->period_left); in arc_pmu_event_set_period() local
252 if (unlikely(left <= -period)) { in arc_pmu_event_set_period()
253 /* left underflowed by more than period. */ in arc_pmu_event_set_period()
254 left = period; in arc_pmu_event_set_period()
255 local64_set(&hwc->period_left, left); in arc_pmu_event_set_period()
258 } else if (unlikely(left <= 0)) { in arc_pmu_event_set_period()
259 /* left underflowed by less than period. */ in arc_pmu_event_set_period()
260 left += period; in arc_pmu_event_set_period()
261 local64_set(&hwc->period_left, left); in arc_pmu_event_set_period()
266 if (left > arc_pm in arc_pmu_event_set_period()
[all...]
/kernel/linux/linux-6.6/arch/arc/kernel/
H A Dperf_event.c408 s64 left = local64_read(&hwc->period_left); in arc_pmu_event_set_period() local
414 if (unlikely(left <= -period)) { in arc_pmu_event_set_period()
415 /* left underflowed by more than period. */ in arc_pmu_event_set_period()
416 left = period; in arc_pmu_event_set_period()
417 local64_set(&hwc->period_left, left); in arc_pmu_event_set_period()
420 } else if (unlikely(left <= 0)) { in arc_pmu_event_set_period()
421 /* left underflowed by less than period. */ in arc_pmu_event_set_period()
422 left += period; in arc_pmu_event_set_period()
423 local64_set(&hwc->period_left, left); in arc_pmu_event_set_period()
428 if (left > arc_pm in arc_pmu_event_set_period()
[all...]
/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/src/
H A Dv4l2_fileformat.cpp238 format.crop.left = crop.c.left; in V4L2GetCrop()
259 crop.c.left = format.crop.left; in V4L2SetCrop()
293 format.cropcap.bounds.left = cropcap.bounds.left; in V4L2GetCropCap()
298 format.cropcap.defrect.left = cropcap.defrect.left; in V4L2GetCropCap()
/kernel/linux/linux-5.10/sound/hda/
H A Dhdac_regmap.c143 * fake register to deal both left and right channels by a single
146 * for the left and the upper 8bit for the right channel.
156 /* read a pseudo stereo amp register (16bit left+right) */
160 unsigned int left, right; in hda_reg_read_stereo_amp() local
164 err = snd_hdac_exec_verb(codec, reg | AC_AMP_GET_LEFT, 0, &left); in hda_reg_read_stereo_amp()
170 *val = left | (right << 8); in hda_reg_read_stereo_amp()
174 /* write a pseudo stereo amp register (16bit left+right) */
179 unsigned int verb, left, right; in hda_reg_write_stereo_amp() local
188 left = val & 0xff; in hda_reg_write_stereo_amp()
190 if (left in hda_reg_write_stereo_amp()
[all...]
/kernel/linux/linux-6.6/sound/hda/
H A Dhdac_regmap.c142 * fake register to deal both left and right channels by a single
145 * for the left and the upper 8bit for the right channel.
155 /* read a pseudo stereo amp register (16bit left+right) */
159 unsigned int left, right; in hda_reg_read_stereo_amp() local
163 err = snd_hdac_exec_verb(codec, reg | AC_AMP_GET_LEFT, 0, &left); in hda_reg_read_stereo_amp()
169 *val = left | (right << 8); in hda_reg_read_stereo_amp()
173 /* write a pseudo stereo amp register (16bit left+right) */
178 unsigned int verb, left, right; in hda_reg_write_stereo_amp() local
187 left = val & 0xff; in hda_reg_write_stereo_amp()
189 if (left in hda_reg_write_stereo_amp()
[all...]
/third_party/ffmpeg/libavfilter/
H A Df_loop.c38 AVAudioFifo *left; member
76 s->left = av_audio_fifo_alloc(inlink->format, inlink->ch_layout.nb_channels, 8192); in aconfig_input()
77 if (!s->fifo || !s->left) in aconfig_input()
90 av_audio_fifo_free(s->left); in auninit()
157 ret2 = av_audio_fifo_write(s->left, (void **)frame->extended_data, frame->nb_samples); in afilter_frame()
160 av_audio_fifo_drain(s->left, drain); in afilter_frame()
190 int nb_samples = av_audio_fifo_size(s->left); in arequest_frame()
198 av_audio_fifo_read(s->left, (void **)out->extended_data, nb_samples); in arequest_frame()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DPatternStringParser.java99 int left = (int) (endpoints & 0xffffffff); in charAt()
101 if (index < 0 || index >= right - left) { in charAt()
104 return pattern.charAt(left + index); in charAt()
113 int left = (int) (endpoints & 0xffffffff); in getLengthFromEndpoints()
115 return right - left; in getLengthFromEndpoints()
121 int left = (int) (endpoints & 0xffffffff); in getString()
123 if (left == right) { in getString()
126 return pattern.substring(left, right); in getString()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DPatternStringParser.java102 int left = (int) (endpoints & 0xffffffff); in charAt()
104 if (index < 0 || index >= right - left) { in charAt()
107 return pattern.charAt(left + index); in charAt()
116 int left = (int) (endpoints & 0xffffffff); in getLengthFromEndpoints()
118 return right - left; in getLengthFromEndpoints()
124 int left = (int) (endpoints & 0xffffffff); in getString()
126 if (left == right) { in getString()
129 return pattern.substring(left, right); in getString()
/third_party/node/deps/v8/src/compiler/
H A Dloop-variable-optimizer.cc103 if (constraint.left->opcode() == IrOpcode::kPhi && in VisitBackedge()
104 NodeProperties::GetControlInput(constraint.left) == loop) { in VisitBackedge()
105 auto var = induction_vars_.find(constraint.left->id()); in VisitBackedge()
114 var->second->AddLowerBound(constraint.left, constraint.kind); in VisitBackedge()
185 Node* left = node->InputAt(0); in AddCmpToLimits() local
187 if (FindInductionVariable(left) || FindInductionVariable(right)) { in AddCmpToLimits()
189 limits->PushFront(Constraint{left, kind, right}, zone()); in AddCmpToLimits()
194 limits->PushFront(Constraint{right, kind, left}, zone()); in AddCmpToLimits()
/third_party/openssl/test/testutil/
H A Dtests.c23 * The special cases are for prefix where "ERROR" is assumed and for left
28 const char *left, const char *right, in test_fail_message_prefix()
35 if (left != NULL && right != NULL) in test_fail_message_prefix()
36 test_printf_stderr("'%s %s %s' failed", left, op, right); in test_fail_message_prefix()
70 const char *type, const char *left,
77 const char *left, const char *right, in test_fail_message_va()
80 test_fail_message_prefix(prefix, file, line, type, left, right, op); in test_fail_message_va()
90 const char *left, const char *right, in test_fail_message()
96 test_fail_message_va(prefix, file, line, type, left, right, op, fmt, ap); in test_fail_message()
26 test_fail_message_prefix(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op) test_fail_message_prefix() argument
75 test_fail_message_va(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const char *fmt, va_list ap) test_fail_message_va() argument
88 test_fail_message(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const char *fmt, ...) test_fail_message() argument
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DParseHelper.h119 void assignError(const TSourceLoc &line, const char* op, TString left, TString right);
121 void binaryOpError(const TSourceLoc &line, const char* op, TString left, TString right);
230 TIntermTyped *addBinaryMath(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc);
231 TIntermTyped *addBinaryMathBooleanResult(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc);
233 TIntermTyped *addAssign(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc);
245 TIntermTyped *addBinaryMathInternal(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc);
246 TIntermTyped *createAssign(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc);
253 bool binaryOpCommonCheck(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc);
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Ddigestauth.c582 size_t left; /* number of characters left in 'header' for 'uri' */ in MHD_digest_auth_check() local
593 left = strlen (header); in MHD_digest_auth_check()
604 left -= strlen ("username") + len; in MHD_digest_auth_check()
616 left -= strlen ("realm") + len; in MHD_digest_auth_check()
623 left -= strlen ("nonce") + len; in MHD_digest_auth_check()
624 if (left > 32 * 1024) in MHD_digest_auth_check()
638 uri = malloc(left + 1); in MHD_digest_auth_check()
648 left + 1, in MHD_digest_auth_check()
/third_party/skia/modules/skparagraph/src/
H A DDecorations.cpp58 SkScalar x = context.clip.left(); in paint()
85 SkScalar left = x - context.fTextShift; in paint() local
87 calculateGaps(context, SkRect::MakeXYWH(left, y, width, fThickness), baseline, fThickness, textStyle); in paint()
89 calculateGaps(context, SkRect::MakeXYWH(left, bottom, width, fThickness), baseline, in paint()
101 SkScalar left = x - context.fTextShift; in paint() local
103 calculateGaps(context, SkRect::MakeXYWH(left, y, width, fThickness), baseline, fThickness, textStyle); in paint()
111 SkScalar left = x - context.fTextShift; in paint() local
113 SkRect rect = SkRect::MakeXYWH(left, y, width, fThickness); in paint()

Completed in 16 milliseconds

1...<<21222324252627282930>>...126