/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_div.c | 64 dv->top = 1; 144 int top = num->top; in bn_left_align() local 145 int rshift = BN_num_bits_word(d[top - 1]), lshift, i; in bn_left_align() 152 for (i = 0, m = 0; i < top; i++) { in bn_left_align() 224 if (divisor->d[divisor->top - 1] == 0) { in BN_div() 273 assert(divisor->top > 0 && divisor->d[divisor->top - 1] != 0); in bn_div_fixed_top() 303 div_n = sdiv->top; in bn_div_fixed_top() 304 num_n = snum->top; in bn_div_fixed_top() [all...] |
/third_party/openssl/crypto/bn/ |
H A D | bn_div.c | 64 dv->top = 1; 144 int top = num->top; in bn_left_align() local 145 int rshift = BN_num_bits_word(d[top - 1]), lshift, i; in bn_left_align() 152 for (i = 0, m = 0; i < top; i++) { in bn_left_align() 224 if (divisor->d[divisor->top - 1] == 0) { in BN_div() 273 assert(divisor->top > 0 && divisor->d[divisor->top - 1] != 0); in bn_div_fixed_top() 303 div_n = sdiv->top; in bn_div_fixed_top() 304 num_n = snum->top; in bn_div_fixed_top() [all...] |
/third_party/skia/src/core/ |
H A D | SkRegion_path.cpp | 141 // allow for two "empty" rows for the top and bottom in init() 142 // [ Y, 1, L, R, S] == 5 (*2 for top and bottom) in init() 281 SkScalar top = SkIntToScalar(SK_MaxS16); in count_path_runtype_values() local 290 if (top > pts[i].fY) { in count_path_runtype_values() 291 top = pts[i].fY; in count_path_runtype_values() 297 if (top > pts[0].fY) { in count_path_runtype_values() 298 top = pts[0].fY; in count_path_runtype_values() 308 SkASSERT(top <= bot); in count_path_runtype_values() 309 *itop = SkScalarRoundToInt(top); in count_path_runtype_values() 352 int top in setPath() local 414 int top() const { top() function [all...] |
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/samples/ |
H A D | RuntimeSample.java | 37 public void render(Canvas canvas, long ms, float left, float top, float right, float bottom) { in render() argument 40 .setUniform("u_h", bottom - top); in render() 45 canvas.concat(new Matrix().translate(left, top)); in render() 46 canvas.drawRect(0, 0, right - left, bottom - top, paint); in render()
|
/third_party/node/deps/v8/src/heap/ |
H A D | spaces-inl.h | 140 Address current_top = allocation_info_.top(); in AllocateRawAligned() 161 Address top = HeapObject::cast(obj).address(); in FromResult() local 162 return LocalAllocationBuffer(heap, LinearAllocationArea(top, top + size)); in FromResult() 215 Address top = allocation_info_->top(); in AllocateFastAligned() local 216 int filler_size = Heap::GetFillToAlign(top, alignment); in AllocateFastAligned() 267 DCHECK_LE(allocation_info_->start(), allocation_info_->top()); in AllocateRawUnaligned() 287 DCHECK_LE(allocation_info_->start(), allocation_info_->top()); in AllocateRawAligned()
|
H A D | heap-inl.h | 236 return new_space_ ? new_space_->top() : kNullAddress; in NewSpaceTop() 349 // below (memento_address == top) ensures that this is safe. Mark the word as in FindAllocationMemento() 376 Address top; in FindAllocationMemento() local 384 // it, so suffices to compare ptr and top here. in FindAllocationMemento() 385 top = NewSpaceTop(); in FindAllocationMemento() 386 DCHECK(memento_address == top || in FindAllocationMemento() 387 memento_address + HeapObject::kHeaderSize <= top || in FindAllocationMemento() 388 !Page::OnSamePage(memento_address, top - 1)); in FindAllocationMemento() 389 if ((memento_address != top) && memento_candidate.IsValid()) { in FindAllocationMemento() 441 Address top in IsPendingAllocationInternal() local 453 Address top = paged_space->original_top(); IsPendingAllocationInternal() local [all...] |
/third_party/node/deps/v8/src/execution/ |
H A D | stack-guard.cc | 109 InterruptsScope* top = thread_local_.interrupt_scopes_; in PopInterruptsScope() local 110 DCHECK_NE(top->mode_, InterruptsScope::kNoop); in PopInterruptsScope() 111 if (top->mode_ == InterruptsScope::kPostponeInterrupts) { in PopInterruptsScope() 113 DCHECK_EQ(thread_local_.interrupt_flags_ & top->intercept_mask_, 0); in PopInterruptsScope() 114 thread_local_.interrupt_flags_ |= top->intercepted_flags_; in PopInterruptsScope() 116 DCHECK_EQ(top->mode_, InterruptsScope::kRunInterrupts); in PopInterruptsScope() 118 if (top->prev_) { in PopInterruptsScope() 123 top->prev_->Intercept(flag)) { in PopInterruptsScope() 131 thread_local_.interrupt_scopes_ = top->prev_; in PopInterruptsScope()
|
/third_party/python/Lib/idlelib/ |
H A D | tooltip.py | 31 # show no border on the top level window 167 top = Toplevel(parent) 168 top.title("Test tooltip") 170 top.geometry("+%d+%d" % (x, y + 150)) 171 label = Label(top, text="Place your mouse over buttons") 173 button1 = Button(top, text="Button 1 -- 1/2 second hover delay") 176 button2 = Button(top, text="Button 2 -- no hover delay")
|
H A D | debugobj.py | 125 top = Toplevel(parent) 126 top.title("Test debug object browser") 128 top.geometry("+%d+%d" % (x + 100, y + 175)) 129 top.configure(bd=0, bg="yellow") 130 top.focus_set() 131 sc = ScrolledCanvas(top, bg="white", highlightthickness=0, takefocus=1)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | RegionPass.cpp | 226 PMS.top()->getPassManagerType() > PMT_RegionPassManager) in preparePassManager() 233 if (PMS.top()->getPassManagerType() == PMT_RegionPassManager && in preparePassManager() 234 !PMS.top()->preserveHigherLevelAnalysis(this)) in preparePassManager() 243 PMS.top()->getPassManagerType() > PMT_RegionPassManager) in assignPassManager() 249 if (PMS.top()->getPassManagerType() == PMT_RegionPassManager) in assignPassManager() 250 RGPM = (RGPassManager*)PMS.top(); in assignPassManager() 254 PMDataManager *PMD = PMS.top(); in assignPassManager() 260 // [2] Set up new manager's top level manager in assignPassManager()
|
/third_party/skia/gm/ |
H A D | patch.cpp | 41 SkPoint top[SkPatchUtils::kNumPtsCubic]; in draw_control_points() local 42 SkPatchUtils::GetTopCubic(cubics, top); in draw_control_points() 50 SkPoint corners[4] = { bottom[0], bottom[3], top[0], top[3] }; in draw_control_points() 53 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, top, paint); in draw_control_points() 57 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, top + 1, paint); in draw_control_points() 70 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, top + 1, paint); in draw_control_points() 81 //top points
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_blend_vulkan.c | 62 C(0, vec4 blend_##MODE(vec4 top, vec4 bottom, float opacity) { ) \ 68 #define A top 201 GLSLF(2, const vec4 top = texture(top_images[%i], pos); ,i); in init_filter() 204 GLSLF(2, vec4 dst = %s(top, bottom, opacity); ,s->params[i].blend); in init_filter() 234 AVVkFrame *top = (AVVkFrame *)top_frame->data[0]; in process_frames() local 249 &s->top_images[i].imageView, top->img[i], in process_frames() 276 .oldLayout = top->layout[i], in process_frames() 280 .image = top->img[i], in process_frames() 317 top->layout[i] = barriers[0].newLayout; in process_frames() 318 top in process_frames() 354 AVFrame *top, *bottom, *out; blend_frame() local [all...] |
/third_party/skia/src/pathops/ |
H A D | SkDCubicLineIntersection.cpp | 247 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() argument 248 addExactVerticalEndPoints(top, bottom, axisIntercept); in verticalIntersect() 250 addNearVerticalEndPoints(top, bottom, axisIntercept); in verticalIntersect() 257 double lineT = (pt.fY - top) / (bottom - top); in verticalIntersect() 340 void addExactVerticalEndPoints(double top, double bottom, double x) { in addExactVerticalEndPoints() argument 342 double lineT = SkDLine::ExactPointV(fCubic[cIndex], top, bottom, x); in addExactVerticalEndPoints() 351 void addNearVerticalEndPoints(double top, double bottom, double x) { in addNearVerticalEndPoints() argument 357 double lineT = SkDLine::NearPointV(fCubic[cIndex], top, bottom, x); in addNearVerticalEndPoints() 425 int SkIntersections::vertical(const SkDCubic& cubic, double top, doubl argument [all...] |
H A D | SkDQuadLineIntersection.cpp | 254 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() argument 255 addExactVerticalEndPoints(top, bottom, axisIntercept); in verticalIntersect() 257 addNearVerticalEndPoints(top, bottom, axisIntercept); in verticalIntersect() 264 double lineT = (pt.fY - top) / (bottom - top); in verticalIntersect() 345 void addExactVerticalEndPoints(double top, double bottom, double x) { in addExactVerticalEndPoints() argument 347 double lineT = SkDLine::ExactPointV(fQuad[qIndex], top, bottom, x); in addExactVerticalEndPoints() 356 void addNearVerticalEndPoints(double top, double bottom, double x) { in addNearVerticalEndPoints() argument 362 double lineT = SkDLine::NearPointV(fQuad[qIndex], top, bottom, x); in addNearVerticalEndPoints() 430 int SkIntersections::vertical(const SkDQuad& quad, double top, doubl argument [all...] |
H A D | SkDConicLineIntersection.cpp | 150 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() argument 151 this->addExactVerticalEndPoints(top, bottom, axisIntercept); in verticalIntersect() 153 this->addNearVerticalEndPoints(top, bottom, axisIntercept); in verticalIntersect() 162 double lineT = (pt.fY - top) / (bottom - top); in verticalIntersect() 245 void addExactVerticalEndPoints(double top, double bottom, double x) { in addExactVerticalEndPoints() argument 247 double lineT = SkDLine::ExactPointV(fConic[cIndex], top, bottom, x); in addExactVerticalEndPoints() 256 void addNearVerticalEndPoints(double top, double bottom, double x) { in addNearVerticalEndPoints() argument 262 double lineT = SkDLine::NearPointV(fConic[cIndex], top, bottom, x); in addNearVerticalEndPoints() 354 int SkIntersections::vertical(const SkDConic& conic, double top, doubl argument [all...] |
H A D | SkIntersections.h | 65 int conicVertical(const SkPoint a[3], SkScalar weight, SkScalar top, SkScalar bottom, in conicVertical() argument 70 return vertical(conic, top, bottom, x, flipped); in conicVertical() 90 int cubicVertical(const SkPoint a[4], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { in cubicVertical() argument 94 return vertical(cubic, top, bottom, x, flipped); in cubicVertical() 140 int lineVertical(const SkPoint a[2], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { in lineVertical() argument 144 return vertical(line, top, bottom, x, flipped); in lineVertical() 176 int quadVertical(const SkPoint a[3], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { in quadVertical() argument 180 return vertical(quad, top, bottom, x, flipped); in quadVertical() 280 int vertical(const SkDLine&, double top, double bottom, double x, bool flipped); 281 int vertical(const SkDQuad&, double top, doubl [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/data/ |
H A D | readable_font_data.cc | 235 int32_t top = length; in SearchUShort() local 236 while (top != bottom) { in SearchUShort() 237 location = (top + bottom) / 2; in SearchUShort() 241 top = location; in SearchUShort() 264 int32_t top = length; in SearchUShort() local 265 while (top != bottom) { in SearchUShort() 266 location = (top + bottom) / 2; in SearchUShort() 273 top = location; in SearchUShort() 290 int32_t top = length; in SearchULong() local 291 while (top ! in SearchULong() [all...] |
/third_party/cups-filters/filter/pdftopdf/ |
H A D | qpdf_pdftopdf_processor.cc | 19 QUtil::double_to_string(box.right+xshift)+" "+QUtil::double_to_string(box.top+yshift)+" l "+"S \n "+ in debug_box() 22 QUtil::double_to_string(box.left+xshift)+" "+QUtil::double_to_string(box.top+yshift)+" l "+"S \n "+ in debug_box() 25 QUtil::double_to_string(box.right-box.left)+" "+QUtil::double_to_string(box.top-box.bottom)+" re "+"S Q\n"; in debug_box() 138 assert(rect.bottom<=rect.top); in add_border_rect() 143 QUtil::double_to_string(rect.right-rect.left-2*margin)+" "+QUtil::double_to_string(rect.top-rect.bottom-2*margin)+" re S \n"; in add_border_rect() 147 QUtil::double_to_string(rect.right-rect.left-2*margin)+" "+QUtil::double_to_string(rect.top-rect.bottom-2*margin)+" re S \n"; in add_border_rect() 157 #ifdef DEBUG // draw it on top in add_border_rect() 190 double height = currpage.top-currpage.bottom; in crop() 192 double pageHeight = cropRect.top-cropRect.bottom; in crop() 240 currpage.top in crop() [all...] |
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | lossless_sse2.c | 141 static uint32_t Predictor5_SSE2(uint32_t left, const uint32_t* const top) { in Predictor5_SSE2() argument 142 const uint32_t pred = Average3_SSE2(left, top[0], top[1]); in Predictor5_SSE2() 145 static uint32_t Predictor6_SSE2(uint32_t left, const uint32_t* const top) { in Predictor6_SSE2() argument 146 const uint32_t pred = Average2_SSE2(left, top[-1]); in Predictor6_SSE2() 149 static uint32_t Predictor7_SSE2(uint32_t left, const uint32_t* const top) { in Predictor7_SSE2() argument 150 const uint32_t pred = Average2_SSE2(left, top[0]); in Predictor7_SSE2() 153 static uint32_t Predictor8_SSE2(uint32_t left, const uint32_t* const top) { in Predictor8_SSE2() argument 154 const uint32_t pred = Average2_SSE2(top[-1], top[ in Predictor8_SSE2() 158 Predictor9_SSE2(uint32_t left, const uint32_t* const top) Predictor9_SSE2() argument 163 Predictor10_SSE2(uint32_t left, const uint32_t* const top) Predictor10_SSE2() argument 167 Predictor11_SSE2(uint32_t left, const uint32_t* const top) Predictor11_SSE2() argument 171 Predictor12_SSE2(uint32_t left, const uint32_t* const top) Predictor12_SSE2() argument 175 Predictor13_SSE2(uint32_t left, const uint32_t* const top) Predictor13_SSE2() argument [all...] |
/third_party/ffmpeg/libavcodec/mips/ |
H A D | hevcpred_msa.c | 1939 uint8_t *top = top_array + 1; in ff_intra_pred_8_16x16_msa() local 2048 ST_UB4(vec0, vec0, vec0, vec0, top, 16); in ff_intra_pred_8_16x16_msa() 2050 top[-1] = 128; in ff_intra_pred_8_16x16_msa() 2054 top[-1] = left[-1]; in ff_intra_pred_8_16x16_msa() 2058 ST_UB(vec0, top); in ff_intra_pred_8_16x16_msa() 2062 ST_UB(vec0, (top + 16)); in ff_intra_pred_8_16x16_msa() 2069 ((((union unaligned_32 *) (top + 16 + top_right_size + in ff_intra_pred_8_16x16_msa() 2156 top[i - 1] = top[i]; in ff_intra_pred_8_16x16_msa() 2157 left[-1] = top[ in ff_intra_pred_8_16x16_msa() 2456 uint8_t *top = top_array + 1; ff_intra_pred_8_32x32_msa() local [all...] |
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_struct-json/ |
H A D | test2.c | 172 t2_configs_t *top; in test2() local 194 top = (t2_configs_t *)a.dest; /* the top level object */ in test2() 196 if (!top) { in test2() 197 lwsl_err("%s: no top level object\n", __func__); in test2() 200 t2_configs_dump(top); in test2() 202 /* 2. Let's reserialize the top level object and see what comes out */ in test2() 205 LSSERJ_FLAG_OMIT_SCHEMA, top); in test2()
|
/third_party/musl/porting/liteos_m/kernel/src/math/ |
H A D | log.c | 47 uint32_t top; in log() local 51 top = top16(x); in log() 78 if (predict_false(top - 0x0010 >= 0x7ff0 - 0x0010)) { in log() 84 if ((top & 0x8000) || (top & 0x7ff0) == 0x7ff0) in log()
|
/third_party/musl/src/math/ |
H A D | log.c | 32 uint32_t top; in log() local 36 top = top16(x); in log() 63 if (predict_false(top - 0x0010 >= 0x7ff0 - 0x0010)) { in log() 69 if ((top & 0x8000) || (top & 0x7ff0) == 0x7ff0) in log()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | log.c | 32 uint32_t top; in log() local 36 top = top16(x); in log() 63 if (predict_false(top - 0x0010 >= 0x7ff0 - 0x0010)) { in log() 69 if ((top & 0x8000) || (top & 0x7ff0) == 0x7ff0) in log()
|
/third_party/musl/porting/uniproton/kernel/src/math/ |
H A D | log.c | 47 uint32_t top; in log() local 51 top = top16(x); in log() 78 if (predict_false(top - 0x0010 >= 0x7ff0 - 0x0010)) { in log() 84 if ((top & 0x8000) || (top & 0x7ff0) == 0x7ff0) in log()
|