Searched defs:top (Results 201 - 225 of 488) sorted by relevance

1234567891011>>

/external/skia/src/pathops/
H A DSkIntersections.h64 int conicVertical(const SkPoint a[3], SkScalar weight, SkScalar top, SkScalar bottom, argument
69 return vertical(conic, top, bottom, x, flipped);
89 int cubicVertical(const SkPoint a[4], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { argument
93 return vertical(cubic, top, bottom, x, flipped);
130 int lineVertical(const SkPoint a[2], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { argument
134 return vertical(line, top, bottom, x, flipped);
166 int quadVertical(const SkPoint a[3], SkScalar top, SkScalar bottom, SkScalar x, bool flipped) { argument
170 return vertical(quad, top, bottom, x, flipped);
267 int vertical(const SkDLine&, double top, double bottom, double x, bool flipped);
268 int vertical(const SkDQuad&, double top, doubl
[all...]
/external/skia/src/utils/
H A DSkCanvasStateUtils.cpp45 int32_t left, top, right, bottom; member in struct:ClipRect
279 state.clipRects[i].top,
H A DSkPaintFilterCanvas.cpp97 void SkPaintFilterCanvas::onDrawBitmap(const SkBitmap& bm, SkScalar left, SkScalar top, argument
101 this->INHERITED::onDrawBitmap(bm, left, top, apf.paint());
121 void SkPaintFilterCanvas::onDrawImage(const SkImage* image, SkScalar left, SkScalar top, argument
125 this->INHERITED::onDrawImage(image, left, top, apf.paint());
H A DSkPatchUtils.cpp137 // Level of detail per axis, based on the larger side between top and bottom or left and right
235 SkPoint bottom = fBottom.next(), top = fTop.next(); local
244 SkPoint s0 = SkPoint::Make((1.0f - v) * top.x() + v * bottom.x(),
245 (1.0f - v) * top.y() + v * bottom.y());
/external/tremolo/Tremolo/
H A Dcodebook.c149 long top=0; local
174 if(chase>=top){
176 top++;
177 r[chase*2]=top;
182 r[chase*2+bit]=top;
188 if(chase>=top){
189 top++;
288 long top=s->used_entries*3-2; local
295 top-=4;
296 out[top]
[all...]
/external/v8/src/debug/
H A Ddebug-evaluate.cc29 // Enter the top context from before the debugger was invoked.
31 SaveContext* top = &save; local
32 while (top != NULL && IsDebugContext(isolate, *top->context())) {
33 top = top->prev();
35 if (top != NULL) isolate->set_context(*top->context());
37 // Get the native context now set to the top context from before the
69 // materialized and included on top o
[all...]
/external/v8/src/
H A Dexecution.cc286 PostponeInterruptsScope* top = thread_local_.postpone_interrupts_; local
288 DCHECK((thread_local_.interrupt_flags_ & top->intercept_mask_) == 0);
289 thread_local_.interrupt_flags_ |= top->intercepted_flags_;
292 thread_local_.postpone_interrupts_ = top->prev_;
/external/v8/src/heap/
H A Dspaces-inl.h123 if (cur_addr_ == space_->top() && cur_addr_ != space_->limit()) {
310 // Try linear allocation in the page of alloc_info's allocation top. Does
315 Address current_top = allocation_info_.top();
326 Address current_top = allocation_info_.top();
344 Address current_top = allocation_info_.top();
443 Address top = allocation_info_.top(); local
444 int filler_size = Heap::GetFillToAlign(top, alignment);
447 if (allocation_info_.limit() - top < aligned_size_in_bytes) {
453 top
473 Address top = allocation_info_.top(); local
536 Address top = HeapObject::cast(obj)->address(); local
[all...]
H A Dstore-buffer.cc523 Address* top = reinterpret_cast<Address*>(heap_->store_buffer_top()); local
525 if (top == start_) return;
529 DCHECK(top <= limit_);
531 EnsureSpace(top - start_);
538 for (Address* current = start_; current < top; current++) {
/external/valgrind/callgrind/
H A Dbbcc.c489 /* RET at top of call stack */
512 /* Force a new top context, will be set active by push_cxt() */
513 CLG_(current_fn_stack).top--;
641 /* A return not matching the top call in our callstack is a jump */
751 ((CLG_(current_fn_stack).top > CLG_(current_fn_stack).bottom) &&
752 ( *(CLG_(current_fn_stack).top-1)==0)) ) {
786 CLG_ASSERT(CLG_(current_fn_stack).top > CLG_(current_fn_stack).bottom);
795 new_recursion((*CLG_(current_fn_stack).top)->separate_recursions);
827 if ((*CLG_(current_fn_stack).top)->separate_recursions >1) {
829 fn_node* top local
[all...]
/external/webp/src/dsp/
H A Dfilters_sse2.c167 // Very first top-left pixel is copied.
169 // Rest of top scan-line is left-predicted.
198 const uint8_t* const top,
205 const __m128i B0 = _mm_loadl_epi64((const __m128i*)&top[i]);
206 const __m128i C0 = _mm_loadl_epi64((const __m128i*)&top[i - 1]);
218 out[i] = row[i] - GradientPredictorC(row[i - 1], top[i], top[i - 1]);
223 const uint8_t* const top,
231 const __m128i tmp0 = _mm_loadl_epi64((const __m128i*)&top[i]);
232 const __m128i tmp1 = _mm_loadl_epi64((const __m128i*)&top[
197 GradientPredictDirect(const uint8_t* const row, const uint8_t* const top, uint8_t* const out, int length) argument
222 GradientPredictInverse(const uint8_t* const in, const uint8_t* const top, uint8_t* const row, int length) argument
[all...]
/external/webp/src/enc/
H A Diterator.c267 // top
300 // top-left (before 'top'!)
305 if (y < enc->mb_h_ - 1) { // top
390 // Array to record the position of the top sample to pass to the prediction
410 for (i = 0; i < 16; ++i) { // top
413 // top-right samples have a special case on the far right of the picture
429 uint8_t* const top = it->i4_top_; local
434 top[-4 + i] = blk[i + 3 * BPS]; // store future top sample
[all...]
/external/webp/src/utils/
H A Dquant_levels_dec.c83 const uint16_t* const top = p->top_; local
91 new_value = top[x] + sum;
100 // That's why we don't update the 'src' pointer on top/bottom area:
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DSurfaceViewRenderer.java83 // externally. The layout change is a two pass process: first onMeasure() is called in a top-down
84 // traversal of the View tree, followed by an onLayout() pass that is also top-down. During the
362 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
365 layoutSize.y = bottom - top;
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc23 DesktopRegion::Row::Row(int32_t top, int32_t bottom) argument
24 : top(top), bottom(bottom) {
65 it1->second->top != it2->second->top ||
94 int top = rect.top(); local
98 Rows::iterator row = rows_.upper_bound(top);
99 while (top < rect.bottom()) {
100 if (row == rows_.end() || top < ro
202 int32_t top = it2->second->top; local
283 int top = row_b->second->top; local
[all...]
/external/webrtc/webrtc/modules/video_render/
H A Dvideo_render_impl.cc168 const float top,
189 _ptrRenderer->AddIncomingRenderStream(streamId, zOrder, left, top,
267 float& top,
280 left, top, right,
435 const float top,
447 return _ptrRenderer->SetStreamCropping(streamId, left, top, right, bottom);
474 const float left, const float top,
487 backgroundColorRef, left, top, right, bottom);
494 const float top,
506 return _ptrRenderer->SetBitmap(bitMap, pictureId, colorKey, left, top,
165 AddIncomingRenderStream(const uint32_t streamId, const uint32_t zOrder, const float left, const float top, const float right, const float bottom) argument
263 GetIncomingRenderStreamProperties( const uint32_t streamId, uint32_t& zOrder, float& left, float& top, float& right, float& bottom) const argument
432 SetStreamCropping( const uint32_t streamId, const float left, const float top, const float right, const float bottom) argument
468 SetText( const uint8_t textId, const uint8_t* text, const int32_t textLength, const uint32_t textColorRef, const uint32_t backgroundColorRef, const float left, const float top, const float right, const float bottom) argument
490 SetBitmap(const void* bitMap, const uint8_t pictureId, const void* colorKey, const float left, const float top, const float right, const float bottom) argument
534 ConfigureRenderer( const uint32_t streamId, const unsigned int zOrder, const float left, const float top, const float right, const float bottom) argument
[all...]
H A Dvideo_render_internal_impl.cc391 const float top,
412 _ptrRenderer->AddIncomingRenderStream(streamId, zOrder, left, top,
490 float& top,
503 left, top, right,
658 const float top,
670 return _ptrRenderer->SetStreamCropping(streamId, left, top, right, bottom);
697 const float left, const float top,
710 backgroundColorRef, left, top, right, bottom);
717 const float top,
729 return _ptrRenderer->SetBitmap(bitMap, pictureId, colorKey, left, top,
388 AddIncomingRenderStream(const uint32_t streamId, const uint32_t zOrder, const float left, const float top, const float right, const float bottom) argument
486 GetIncomingRenderStreamProperties( const uint32_t streamId, uint32_t& zOrder, float& left, float& top, float& right, float& bottom) const argument
655 SetStreamCropping( const uint32_t streamId, const float left, const float top, const float right, const float bottom) argument
691 SetText( const uint8_t textId, const uint8_t* text, const int32_t textLength, const uint32_t textColorRef, const uint32_t backgroundColorRef, const float left, const float top, const float right, const float bottom) argument
713 SetBitmap(const void* bitMap, const uint8_t pictureId, const void* colorKey, const float left, const float top, const float right, const float bottom) argument
757 ConfigureRenderer( const uint32_t streamId, const unsigned int zOrder, const float left, const float top, const float right, const float bottom) argument
[all...]
/external/aac/libAACdec/src/
H A Dblock.cpp277 int top, band; local
323 top = band + sect_len;
330 pNumLinesInSec[numLinesInSecIdx] = BandOffsets[top] - BandOffsets[band];
345 if (top > 64) {
349 if (top + group*16 > (8 * 16)) {
363 for (; band < top; band++)
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/widget/
H A DWidget.java81 * @param x X-Coordinate of the top left corner of element. When using RELATIVE, must be a value between 0 and 1.
83 * @param y Y_VALS_ONLY-Coordinate of the top-left corner of element. When using RELATIVE, must be a value between 0 and 1.
169 public void setMargins(float left, float top, float right, float bottom) { argument
170 boxModel.setMargins(left, top, right, bottom);
173 public void setPadding(float left, float top, float right, float bottom) { argument
174 boxModel.setPadding(left, top, right, bottom);
279 float y = metrics.getYPositionMetric().getPixelValue(viewRect.height()) + viewRect.top;
320 return PixelUtils.add(new PointF(widgetRect.left, widgetRect.top),
336 outlineRect.top + marginTop,
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3collections.h81 * to minimize this, but that seems over the top for what this is needed for.
205 /** Used for quick access to the top of the stack
207 void * top; member in struct:ANTLR3_STACK_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c951 ANTLR3_UINT32 top; local
954 top = recognizer->state->following->size(recognizer->state->following);
959 for (i = top; i>0; i--)
971 // Only leave EOR in the set if at top (start rule); this lets us know
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3TreeWalker.java269 Node top = pos;
281 if (top.equals(pos))
289 if ((null == pos) || (top.equals(pos))) {
314 * @param top Node in the tree where to end traversal
318 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException { argument
354 if ((null != top) && top.equals(pos))
362 if ((null == pos) || ((null != top) && top.equals(pos))) {
/external/boringssl/include/openssl/
H A Derr.h375 /* top contains the index one past the most recent error. If |top| equals
377 unsigned top; member in struct:err_state_st
/external/boringssl/src/crypto/bn/
H A Dexponentiation.c505 wstart = bits - 1; /* The top bit of the window */
608 if (a->top == 1 && !a->neg && BN_get_flags(p, BN_FLG_CONSTTIME) == 0) {
699 wstart = bits - 1; /* The top bit of the window */
701 j = m->top; /* borrow j */
706 /* 2^(top*BN_BITS2) - m */
711 r->top = j;
713 * were 0xfff[...], so decrement r->top accordingly. */
789 static int copy_to_prebuf(const BIGNUM *b, int top, unsigned char *buf, int idx, argument
793 if (top > b->top) {
803 copy_from_prebuf(BIGNUM *b, int top, unsigned char *buf, int idx, int width) argument
868 int top; local
[all...]
/external/boringssl/src/crypto/err/
H A Derr.c188 static uint32_t get_error_values(int inc, int top, const char **file, int *line, argument
196 if (state == NULL || state->bottom == state->top) {
200 if (top) {
203 i = state->top;
249 assert(!top);
285 return get_error_values(0 /* peek */, 1 /* top */, NULL, NULL, NULL, NULL);
289 return get_error_values(0 /* peek */, 1 /* top */, file, line, NULL, NULL);
294 return get_error_values(0 /* peek */, 1 /* top */, file, line, data, flags);
311 state->top = state->bottom = 0;
594 if (state == NULL || state->top
[all...]

Completed in 1102 milliseconds

1234567891011>>