/external/freetype/src/psaux/ |
D | t1decode.c | 467 decoder->top = decoder->stack; in t1_decoder_parse_charstrings() 501 FT_Long* top = decoder->top; in t1_decoder_parse_charstrings() local 512 FT_TRACE5(( " (%d)", decoder->top - decoder->stack )); in t1_decoder_parse_charstrings() 731 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in t1_decoder_parse_charstrings() 744 *top++ = value; in t1_decoder_parse_charstrings() 745 decoder->top = top; in t1_decoder_parse_charstrings() 758 if ( top - decoder->stack < 2 ) in t1_decoder_parse_charstrings() 761 top -= 2; in t1_decoder_parse_charstrings() 763 subr_no = Fix2Int( top[1] ); in t1_decoder_parse_charstrings() 764 arg_cnt = Fix2Int( top[0] ); in t1_decoder_parse_charstrings() [all …]
|
D | psstack.c | 77 stack->top = stack->buffer; /* empty stack */ in cf2_stack_init() 102 return (CF2_UInt)( stack->top - stack->buffer ); in cf2_stack_count() 110 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushInt() 116 stack->top->u.i = val; in cf2_stack_pushInt() 117 stack->top->type = CF2_NumberInt; in cf2_stack_pushInt() 118 stack->top++; in cf2_stack_pushInt() 126 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushFixed() 132 stack->top->u.r = val; in cf2_stack_pushFixed() 133 stack->top->type = CF2_NumberFixed; in cf2_stack_pushFixed() 134 stack->top++; in cf2_stack_pushFixed() [all …]
|
/external/webp/src/dsp/ |
D | enc.c | 239 const uint8_t* top, int size) { in VerticalPred() argument 241 if (top != NULL) { in VerticalPred() 242 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size); in VerticalPred() 261 const uint8_t* top, int size) { in TrueMotion() argument 264 if (top != NULL) { in TrueMotion() 270 dst[x] = clip_table[top[x]]; in TrueMotion() 282 if (top != NULL) { in TrueMotion() 283 VerticalPred(dst, top, size); in TrueMotion() 291 const uint8_t* top, in DCMode() argument 295 if (top != NULL) { in DCMode() [all …]
|
D | enc_msa.c | 262 static WEBP_INLINE void VE4(uint8_t* dst, const uint8_t* top) { // vertical in VE4() argument 264 const uint64_t val_m = LD(top - 1); in VE4() 275 static WEBP_INLINE void HE4(uint8_t* dst, const uint8_t* top) { // horizontal in HE4() argument 276 const int X = top[-1]; in HE4() 277 const int I = top[-2]; in HE4() 278 const int J = top[-3]; in HE4() 279 const int K = top[-4]; in HE4() 280 const int L = top[-5]; in HE4() 287 static WEBP_INLINE void DC4(uint8_t* dst, const uint8_t* top) { in DC4() argument 290 for (i = 0; i < 4; ++i) dc += top[i] + top[-5 + i]; in DC4() [all …]
|
/external/catch2/docs/ |
D | Readme.md | 1 <a id="top"></a> 4 To get the most out of Catch2, start with the [tutorial](tutorial.md#top). 8 * [Assertion macros](assertions.md#top) 9 * [Matchers](matchers.md#top) 10 * [Logging macros](logging.md#top) 11 * [Test cases and sections](test-cases-and-sections.md#top) 12 * [Test fixtures](test-fixtures.md#top) 13 * [Reporters](reporters.md#top) 14 * [Event Listeners](event-listeners.md#top) 15 * [Data Generators](generators.md#top) [all …]
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | desktop_region.cc | 23 DesktopRegion::Row::Row(int32_t top, int32_t bottom) in Row() argument 24 : top(top), bottom(bottom) { in Row() 65 it1->second->top != it2->second->top || in Equals() 94 int top = rect.top(); in AddRect() local 98 Rows::iterator row = rows_.upper_bound(top); in AddRect() 99 while (top < rect.bottom()) { in AddRect() 100 if (row == rows_.end() || top < row->second->top) { in AddRect() 104 if (row != rows_.end() && row->second->top < bottom) in AddRect() 105 bottom = row->second->top; in AddRect() 107 row, Rows::value_type(bottom, new Row(top, bottom))); in AddRect() [all …]
|
/external/pdfium/core/fxcrt/ |
D | fx_coordinates.h | 182 FX_RECT() : left(0), top(0), right(0), bottom(0) {} in FX_RECT() 183 FX_RECT(int l, int t, int r, int b) : left(l), top(t), right(r), bottom(b) {} in FX_RECT() 186 int Height() const { return bottom - top; } in Height() 187 bool IsEmpty() const { return right <= left || bottom <= top; } in IsEmpty() 193 h -= top; in Valid() 205 top += dy; in Offset() 210 return left == src.left && right == src.right && top == src.top && 215 return x >= left && x < right && y >= top && y < bottom; in Contains() 219 int32_t top; member 229 : left(l), bottom(b), right(r), top(t) {} in CFX_FloatRect() [all …]
|
D | fx_coordinates.cpp | 32 if (top > bottom) in Normalize() 33 std::swap(top, bottom); in Normalize() 41 top = std::max(top, src_n.top); in Intersect() 44 if (left > right || top > bottom) { in Intersect() 45 left = top = right = bottom = 0; in Intersect() 51 top = rect.bottom; in CFX_FloatRect() 53 bottom = rect.top; in CFX_FloatRect() 77 if (bottom > top) in Normalize() 78 std::swap(top, bottom); in Normalize() 85 top = 0.0f; in Reset() [all …]
|
D | fx_coordinates_unittest.cpp | 16 EXPECT_FLOAT_EQ(0.0f, rect.top); in TEST() 24 EXPECT_FLOAT_EQ(0.0f, rect.top); in TEST() 29 EXPECT_FLOAT_EQ(0.0f, rect.top); in TEST() 37 EXPECT_FLOAT_EQ(6.2f, rect.top); in TEST() 43 EXPECT_FLOAT_EQ(6.2f, rect.top); in TEST() 50 EXPECT_FLOAT_EQ(6.3f, rect.top); in TEST() 57 EXPECT_FLOAT_EQ(6.3f, rect.top); in TEST() 64 EXPECT_FLOAT_EQ(6.3f, rect.top); in TEST() 73 EXPECT_FLOAT_EQ(0.0f, rect.top); in TEST() 80 EXPECT_FLOAT_EQ(3.2f, rect.top); in TEST() [all …]
|
/external/tensorflow/tensorflow/core/lib/gtl/ |
D | top_n_test.cc | 52 TopN<int, Cmp> top(limit, cmp); in TestIntTopNHelper() local 55 for (int e : shadow) top.push(e); in TestIntTopNHelper() 58 EXPECT_EQ(top_size, top.size()); in TestIntTopNHelper() 60 EXPECT_EQ(shadow[top_size - 1], top.peek_bottom()); in TestIntTopNHelper() 64 v = ConsumeRawPtr(top.ExtractUnsorted()); in TestIntTopNHelper() 67 v = ConsumeRawPtr(top.Extract()); in TestIntTopNHelper() 111 TopN<string> top(3); in TEST() local 112 EXPECT_TRUE(top.empty()); in TEST() 113 top.push("abracadabra"); in TEST() 114 top.push("waldemar"); in TEST() [all …]
|
/external/libaom/libaom/av1/common/arm/ |
D | cfl_neon.c | 50 const uint16x4_t top = vpaddl_u8(vldh_dup_u8(input)); in cfl_luma_subsampling_420_lbd_neon() local 51 const uint16x4_t sum = vpadal_u8(top, vldh_dup_u8(input + input_stride)); in cfl_luma_subsampling_420_lbd_neon() 54 const uint16x4_t top = vpaddl_u8(vld1_u8(input)); in cfl_luma_subsampling_420_lbd_neon() local 55 const uint16x4_t sum = vpadal_u8(top, vld1_u8(input + input_stride)); in cfl_luma_subsampling_420_lbd_neon() 58 const uint16x8_t top = vpaddlq_u8(vld1q_u8(input)); in cfl_luma_subsampling_420_lbd_neon() local 59 const uint16x8_t sum = vpadalq_u8(top, vld1q_u8(input + input_stride)); in cfl_luma_subsampling_420_lbd_neon() 62 const uint8x8x4_t top = vld4_u8(input); in cfl_luma_subsampling_420_lbd_neon() local 65 const uint16x8_t top_0 = vaddl_u8(top.val[0], top.val[1]); in cfl_luma_subsampling_420_lbd_neon() 69 const uint16x8_t top_1 = vaddl_u8(top.val[2], top.val[3]); in cfl_luma_subsampling_420_lbd_neon() 88 const uint16x4_t top = vpaddl_u8(vldh_dup_u8(input)); in cfl_luma_subsampling_422_lbd_neon() local [all …]
|
/external/lua/src/ |
D | lapi.c | 64 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr() 65 if (o >= L->top) return NONVALIDVALUE; in index2addr() 69 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr() 70 return L->top + idx; in index2addr() 102 if (L->stack_last - L->top > n) /* stack large enough? */ in lua_checkstack() 105 int inuse = cast_int(L->top - L->stack) + EXTRA_STACK; in lua_checkstack() 111 if (res && ci->top < L->top + n) in lua_checkstack() 112 ci->top = L->top + n; /* adjust frame top */ in lua_checkstack() 124 api_check(from, to->ci->top - to->top >= n, "stack overflow"); in lua_xmove() 125 from->top -= n; in lua_xmove() [all …]
|
/external/python/cpython2/Tools/webchecker/ |
D | wsgui.py | 92 def __init__(self, top): argument 93 self.top = top 94 top.columnconfigure(99, weight=1) 95 self.url_label = Label(top, text="URL:") 97 self.url_entry = Entry(top, width=60, exportselection=0) 102 self.dir_label = Label(top, text="Directory:") 104 self.dir_entry = Entry(top) 107 self.go_button = Button(top, text="Go", command=self.go) 109 self.cancel_button = Button(top, text="Cancel", 113 self.auto_button = Button(top, text="Paste+Go", [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | SearchDialogBase.py | 45 self.top = None 50 if not self.top: 53 self.top.deiconify() 54 self.top.tkraise() 61 self.top.grab_set() 65 if self.top: 66 self.top.grab_release() 67 self.top.withdraw() 75 top = Toplevel(self.root) 76 top.bind("<Return>", self.default_command) [all …]
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ViewInnerTextTest.java | 27 LinearLayout top = new LinearLayout(context); in testInnerText() local 28 top.addView(textView("blah")); in testInnerText() 29 top.addView(new View(context)); in testInnerText() 30 top.addView(textView("a b c")); in testInnerText() 33 top.addView(innerLayout); in testInnerText() 41 top.addView(textView("mnop")); in testInnerText() 43 assertEquals("blah a b c d e f g h i jkl! mnop", shadowOf(top).innerText()); in testInnerText() 48 LinearLayout top = new LinearLayout(context); in shouldOnlyIncludeViewTextViewsText() local 49 top.addView(textView("blah", View.VISIBLE)); in shouldOnlyIncludeViewTextViewsText() 50 top.addView(textView("blarg", View.GONE)); in shouldOnlyIncludeViewTextViewsText() [all …]
|
/external/swiftshader/src/OpenGL/common/ |
D | MatrixStack.cpp | 26 top = 0; in MatrixStack() 38 stack[top] = 1; in identity() 43 stack[top] = M; in load() 48 stack[top] = Matrix(M[0], M[4], M[8], M[12], in load() 56 stack[top] = Matrix((float)M[0], (float)M[4], (float)M[8], (float)M[12], in load() 64 stack[top] *= Matrix::translate(x, y, z); in translate() 90 stack[top] *= rotate; in rotate() 100 stack[top] *= Matrix::scale(x, y, z); in scale() 110 stack[top] *= Matrix(M[0], M[4], M[8], M[12], in multiply() 118 stack[top] *= Matrix((float)M[0], (float)M[4], (float)M[8], (float)M[12], in multiply() [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | searchbase.py | 47 self.top = None 52 if not self.top: 55 self.top.deiconify() 56 self.top.tkraise() 63 self.top.grab_set() 67 if self.top: 68 self.top.grab_release() 69 self.top.withdraw() 77 top = Toplevel(self.root) 78 top.bind("<Return>", self.default_command) [all …]
|
/external/openssh/ |
D | bitmap.c | 33 size_t top; /* index of top word allocated */ member 48 ret->top = 0; in bitmap_new() 66 b->top = 0; in bitmap_zero() 72 if (b->top >= b->len) in bitmap_test_bit() 74 if (b->len == 0 || (n / BITMAP_BITS) > b->top) in bitmap_test_bit() 85 if (b->top >= b->len || n > BITMAP_MAX) in reserve() 107 if (offset > b->top) in bitmap_set_bit() 108 b->top = offset; in bitmap_set_bit() 117 if (b->top >= b->len) in retop() 119 while (b->top > 0 && b->d[b->top] == 0) in retop() [all …]
|
/external/python/cpython2/Demo/tix/samples/ |
D | DirTree.py | 43 top = Tix.Frame( w, relief=RAISED, bd=1) 49 top.dir = Tix.DirTree(top) 50 top.dir.hlist['width'] = 40 55 top.btn = Tix.Button(top, text = " >> ", pady = 0) 61 top.ent = Tix.LabelEntry(top, label="Installation Directory:", 69 top.ent.entry['textvariable'] = self.dlist_dir 70 top.btn['command'] = lambda dir=top.dir, ent=top.ent, self=self: \ 73 top.ent.entry.bind('<Return>', lambda self=self: self.okcmd () ) 75 top.pack( expand='yes', fill='both', side=TOP) 76 top.dir.pack( expand=1, fill=BOTH, padx=4, pady=4, side=LEFT) [all …]
|
D | DirList.py | 43 top = Tix.Frame( w, relief=RAISED, bd=1) 49 top.dir = Tix.DirList(top) 50 top.dir.hlist['width'] = 40 55 top.btn = Tix.Button(top, text = " >> ", pady = 0) 61 top.ent = Tix.LabelEntry(top, label="Installation Directory:", 70 top.ent.entry['font'] = font 74 top.ent.entry['textvariable'] = self.dlist_dir 75 top.btn['command'] = lambda dir=top.dir, ent=top.ent, self=self: \ 79 top.ent.entry.bind('<Return>', lambda self=self: self.okcmd () ) 81 top.pack( expand='yes', fill='both', side=TOP) [all …]
|
/external/epid-sdk/doc/html/ |
D | epidstyle.css | 28 margin-top: 5pt; 35 margin-top: 5pt; 58 margin-top: 0; 64 margin-top: 0; 75 margin-top: 0; 81 margin-top: 11pt; 98 margin-top: 0.3em; 102 vertical-align: top; 109 margin-top: 0; 117 vertical-align: top; [all …]
|
/external/doclava/res/assets/templates/assets/ |
D | style.css | 17 margin-top: 3px; 22 margin-top: 0; 27 vertical-align: top; 29 padding-top: 2px; 34 border-top: 1px solid #d2d7d0; 49 vertical-align: top; 50 padding-top: 3px; 54 border-top: 1px solid #d2d7d0; 60 vertical-align: top; 61 padding-top: 3px; [all …]
|
/external/v8/src/heap/ |
D | spaces-inl.h | 74 if (cur_addr_ == space_->top() && cur_addr_ != space_->limit()) { in FromCurrentPage() 174 if (allocation_info_.top() != kNullAddress) { in TryFreeLast() 176 if ((allocation_info_.top() - object_size) == object_address) { in TryFreeLast() 257 return top(type) ? top(type)->page() : nullptr; in GetPageForCategoryType() 268 Address current_top = allocation_info_.top(); in AllocateRawAligned() 284 if (allocation_info_.top() + size_in_bytes <= allocation_info_.limit()) { in EnsureLinearAllocationArea() 291 Address current_top = allocation_info_.top(); in AllocateLinearly() 300 Address current_top = allocation_info_.top(); in TryAllocateLinearlyAligned() 357 if (top_on_previous_step_ && top() < top_on_previous_step_ && in AllocateRaw() 361 DCHECK_NE(top(), kNullAddress); in AllocateRaw() [all …]
|
/external/libaom/libaom/av1/common/x86/ |
D | cfl_ssse3.c | 50 __m128i top = _mm_loadh_epi32((__m128i *)input); in cfl_luma_subsampling_420_lbd_ssse3() local 51 top = _mm_maddubs_epi16(top, twos); in cfl_luma_subsampling_420_lbd_ssse3() 54 const __m128i sum = _mm_add_epi16(top, bot); in cfl_luma_subsampling_420_lbd_ssse3() 57 __m128i top = _mm_loadl_epi64((__m128i *)input); in cfl_luma_subsampling_420_lbd_ssse3() local 58 top = _mm_maddubs_epi16(top, twos); in cfl_luma_subsampling_420_lbd_ssse3() 61 const __m128i sum = _mm_add_epi16(top, bot); in cfl_luma_subsampling_420_lbd_ssse3() 64 __m128i top = _mm_loadu_si128((__m128i *)input); in cfl_luma_subsampling_420_lbd_ssse3() local 65 top = _mm_maddubs_epi16(top, twos); in cfl_luma_subsampling_420_lbd_ssse3() 68 const __m128i sum = _mm_add_epi16(top, bot); in cfl_luma_subsampling_420_lbd_ssse3() 104 __m128i top = _mm_loadh_epi32((__m128i *)input); in cfl_luma_subsampling_422_lbd_ssse3() local [all …]
|
/external/libnl/doc/stylesheets/ |
D | xhtml11.css | 37 margin-top: 1.2em; 46 padding-top: 0.5em; 65 margin-top: 0.5em; 70 margin-top: 0; 93 border-top: 2px solid silver; 94 padding-top: 0.5em; 95 margin-top: 4.0em; 107 margin-top: 1.5em; 113 margin-top: 1.5em; 117 margin-top: 2.5em; [all …]
|