/external/fio/ |
D | cconv.c | 48 struct thread_options_pack *top) in convert_thread_options_to_cpu() argument 53 o->set_options[i] = le64_to_cpu(top->set_options[i]); in convert_thread_options_to_cpu() 55 string_to_cpu(&o->description, top->description); in convert_thread_options_to_cpu() 56 string_to_cpu(&o->name, top->name); in convert_thread_options_to_cpu() 57 string_to_cpu(&o->directory, top->directory); in convert_thread_options_to_cpu() 58 string_to_cpu(&o->filename, top->filename); in convert_thread_options_to_cpu() 59 string_to_cpu(&o->filename_format, top->filename_format); in convert_thread_options_to_cpu() 60 string_to_cpu(&o->opendir, top->opendir); in convert_thread_options_to_cpu() 61 string_to_cpu(&o->ioengine, top->ioengine); in convert_thread_options_to_cpu() 62 string_to_cpu(&o->mmapfile, top->mmapfile); in convert_thread_options_to_cpu() [all …]
|
/external/pdfium/third_party/freetype/src/psaux/ |
D | t1decode.c | 393 decoder->top = decoder->stack; in t1_decoder_parse_charstrings() 432 FT_Long* top = decoder->top; in t1_decoder_parse_charstrings() local 443 FT_TRACE5(( " (%d)", decoder->top - decoder->stack )); in t1_decoder_parse_charstrings() 662 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in t1_decoder_parse_charstrings() 675 *top++ = value; in t1_decoder_parse_charstrings() 676 decoder->top = top; in t1_decoder_parse_charstrings() 689 if ( top - decoder->stack < 2 ) in t1_decoder_parse_charstrings() 692 top -= 2; in t1_decoder_parse_charstrings() 694 subr_no = Fix2Int( top[1] ); in t1_decoder_parse_charstrings() 695 arg_cnt = Fix2Int( top[0] ); in t1_decoder_parse_charstrings() [all …]
|
/external/freetype/src/psaux/ |
D | t1decode.c | 393 decoder->top = decoder->stack; in t1_decoder_parse_charstrings() 432 FT_Long* top = decoder->top; in t1_decoder_parse_charstrings() local 443 FT_TRACE5(( " (%d)", decoder->top - decoder->stack )); in t1_decoder_parse_charstrings() 662 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in t1_decoder_parse_charstrings() 675 *top++ = value; in t1_decoder_parse_charstrings() 676 decoder->top = top; in t1_decoder_parse_charstrings() 689 if ( top - decoder->stack < 2 ) in t1_decoder_parse_charstrings() 692 top -= 2; in t1_decoder_parse_charstrings() 694 subr_no = Fix2Int( top[1] ); in t1_decoder_parse_charstrings() 695 arg_cnt = Fix2Int( top[0] ); in t1_decoder_parse_charstrings() [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/webp/src/dsp/ |
D | enc.c | 229 const uint8_t* top, int size) { in VerticalPred() argument 231 if (top != NULL) { in VerticalPred() 232 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size); in VerticalPred() 251 const uint8_t* top, int size) { in TrueMotion() argument 254 if (top != NULL) { in TrueMotion() 260 dst[x] = clip_table[top[x]]; in TrueMotion() 272 if (top != NULL) { in TrueMotion() 273 VerticalPred(dst, top, size); in TrueMotion() 281 const uint8_t* top, in DCMode() argument 285 if (top != NULL) { in DCMode() [all …]
|
/external/pdfium/third_party/freetype/src/cff/ |
D | cf2stack.c | 66 stack->top = &stack->buffer[0]; /* empty stack */ in cf2_stack_init() 90 return (CF2_UInt)( stack->top - &stack->buffer[0] ); in cf2_stack_count() 98 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] ) in cf2_stack_pushInt() 104 stack->top->u.i = val; in cf2_stack_pushInt() 105 stack->top->type = CF2_NumberInt; in cf2_stack_pushInt() 106 ++stack->top; in cf2_stack_pushInt() 114 if ( stack->top == &stack->buffer[CF2_OPERAND_STACK_SIZE] ) in cf2_stack_pushFixed() 120 stack->top->u.r = val; in cf2_stack_pushFixed() 121 stack->top->type = CF2_NumberFixed; in cf2_stack_pushFixed() 122 ++stack->top; in cf2_stack_pushFixed() [all …]
|
/external/pdfium/core/fxcrt/ |
D | fx_basic_coords.cpp | 35 if (top > bottom) { in Normalize() 36 int temp = top; in Normalize() 37 top = bottom; in Normalize() 46 top = top > src_n.top ? top : src_n.top; in Intersect() 49 if (left > right || top > bottom) { in Intersect() 50 left = top = right = bottom = 0; in Intersect() 80 bottom = (FX_FLOAT)(rect.top); in CFX_FloatRect() 81 top = (FX_FLOAT)(rect.bottom); in CFX_FloatRect() 90 if (bottom > top) { in Normalize() 91 temp = top; in Normalize() [all …]
|
D | fx_coordinates.h | 204 CFX_RTemplate() : left(0), top(0), width(0), height(0) {} in CFX_RTemplate() 209 : left(dst_left), top(dst_top), width(dst_width), height(dst_height) {} in CFX_RTemplate() 212 top(dst_top), in CFX_RTemplate() 216 : left(p.x), top(p.y), width(dst_width), height(dst_height) {} in CFX_RTemplate() 218 : left(p1.x), top(p1.y), width(s2.width), height(s2.height) {} in CFX_RTemplate() 221 top(p1.y), in CFX_RTemplate() 227 : left(p.x), top(p.y), width(v.x), height(v.y) { in CFX_RTemplate() 234 top(other.top), in CFX_RTemplate() 241 static_cast<OtherType>(left), static_cast<OtherType>(top), in As() 247 top = 0; in Reset() [all …]
|
/external/libvncserver/webclients/novnc/include/ |
D | black.css | 15 …background: -moz-linear-gradient(top, #4c4c4c 0%, #2c2c2c 50%, #000000 51%, #131313 100%); /* FF3.… 16 …background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(50%… 17 …background: -webkit-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Chro… 18 …background: -o-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Opera11.1… 19 background: -ms-linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* IE10+ */ 20 background: linear-gradient(top, #4c4c4c 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* W3C */ 24 …background: -moz-linear-gradient(top, #f04040 0%, #2c2c2c 50%, #000000 51%, #131313 100%); /* FF3.… 25 …background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f04040), color-stop(50%… 26 …background: -webkit-linear-gradient(top, #f04040 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Chro… 27 …background: -o-linear-gradient(top, #f04040 0%,#2c2c2c 50%,#000000 51%,#131313 100%); /* Opera11.1… [all …]
|
D | base.css | 92 padding-top: 4px; 127 /*border-top-left-radius: 800px 600px;*/ 153 margin-top:73px; 160 margin-top:73px; 164 #noVNC_controls.top:after { 172 margin-top:73px; 191 margin-top:60px; 208 margin-top:73px; 212 #noVNC_xvp.top:after { 218 margin-top:73px; [all …]
|
/external/boringssl/src/crypto/bn/ |
D | shift.c | 78 if (bn_wexpand(r, a->top + nw + 1) == NULL) { in BN_lshift() 85 t[a->top + nw] = 0; in BN_lshift() 87 for (i = a->top - 1; i >= 0; i--) { in BN_lshift() 91 for (i = a->top - 1; i >= 0; i--) { in BN_lshift() 98 r->top = a->top + nw + 1; in BN_lshift() 110 if (bn_wexpand(r, a->top + 1) == NULL) { in BN_lshift1() 113 r->top = a->top; in BN_lshift1() 115 if (bn_wexpand(r, a->top + 1) == NULL) { in BN_lshift1() 122 for (i = 0; i < a->top; i++) { in BN_lshift1() 129 r->top++; in BN_lshift1() [all …]
|
D | exponentiation.c | 652 j = m->top; /* borrow j */ in BN_mod_exp_mont() 662 r->top = j; in BN_mod_exp_mont() 740 static int copy_to_prebuf(const BIGNUM *b, int top, unsigned char *buf, int idx, in copy_to_prebuf() argument 746 if (top > b->top) { in copy_to_prebuf() 747 top = b->top; /* this works because 'buf' is explicitly zeroed */ in copy_to_prebuf() 750 for (i = 0, j = idx; i < top; i++, j += width) { in copy_to_prebuf() 757 static int copy_from_prebuf(BIGNUM *b, int top, unsigned char *buf, int idx, in copy_from_prebuf() argument 763 if (bn_wexpand(b, top) == NULL) { in copy_from_prebuf() 768 for (i = 0; i < top; i++, table += width) { in copy_from_prebuf() 789 for (i = 0; i < top; i++, table += width) { in copy_from_prebuf() [all …]
|
D | cmp.c | 68 i = a->top - b->top; in BN_ucmp() 75 for (i = a->top - 1; i >= 0; i--) { in BN_ucmp() 115 if (a->top > b->top) { in BN_cmp() 118 if (a->top < b->top) { in BN_cmp() 122 for (i = a->top - 1; i >= 0; i--) { in BN_cmp() 178 switch (bn->top) { in BN_abs_is_word() 193 b_bn.top = b > 0; in BN_cmp_word() 200 return bn->top == 0; in BN_is_zero() 212 return bn->top > 0 && (bn->d[0] & 1) == 1; in BN_is_odd() 216 if (bn->top == 0 || bn->neg) { in BN_is_pow2() [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | ViewInnerTextTest.java | 27 LinearLayout top = new LinearLayout(activity); in testInnerText() local 28 top.addView(textView("blah")); in testInnerText() 29 top.addView(new View(activity)); 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(activity); in shouldOnlyIncludeViewTextViewsText() local 49 top.addView(textView("blah", View.VISIBLE)); in shouldOnlyIncludeViewTextViewsText() 50 top.addView(textView("blarg", View.GONE)); in shouldOnlyIncludeViewTextViewsText() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowRect.java | 14 public void __constructor__(int left, int top, int right, int bottom) { in __constructor__() argument 16 realRect.top = top; in __constructor__() 23 realRect.top = otherRect.top; in __constructor__() 30 set(rect.left, rect.top, rect.right, rect.bottom); in set() 34 public void set(int left, int top, int right, int bottom) { in set() argument 36 realRect.top = top; in set() 48 return realRect.bottom - realRect.top; in height() 60 return realRect.left == r.left && realRect.top == r.top && realRect.right == r.right in equals() 70 sb.append(realRect.top); in toString() 82 && y >= realRect.top && y <= realRect.bottom; in contains() [all …]
|
/external/freetype/src/cff/ |
D | cf2stack.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/syslinux/com32/lua/src/ |
D | lapi.c | 59 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr() 60 if (o >= L->top) return NONVALIDVALUE; in index2addr() 64 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr() 65 return L->top + idx; in index2addr() 96 if (L->stack_last - L->top > size) /* stack large enough? */ in lua_checkstack() 99 int inuse = cast_int(L->top - L->stack) + EXTRA_STACK; in lua_checkstack() 105 if (res && ci->top < L->top + size) in lua_checkstack() 106 ci->top = L->top + size; /* adjust frame top */ in lua_checkstack() 118 api_check(from, to->ci->top - to->top >= n, "not enough elements to move"); in lua_xmove() 119 from->top -= n; in lua_xmove() [all …]
|
D | lvm.c | 110 ci->func = L->top - 1; /* protect stack below results */ in traceexec() 119 setobj2s(L, L->top++, f); /* push function */ in callTM() 120 setobj2s(L, L->top++, p1); /* 1st argument */ in callTM() 121 setobj2s(L, L->top++, p2); /* 2nd argument */ in callTM() 123 setobj2s(L, L->top++, p3); /* 3rd argument */ in callTM() 125 luaD_call(L, L->top - (4 - hasres), hasres, isLua(L->ci)); in callTM() 128 setobjs2s(L, p3, --L->top); in callTM() 225 if (!call_binTM(L, p1, p2, L->top, event)) in call_orderTM() 228 return !l_isfalse(L->top); in call_orderTM() 311 callTM(L, tm, t1, t2, L->top, 1); /* call TM */ in luaV_equalobj_() [all …]
|
/external/skia/third_party/lua/src/ |
D | lapi.c | 59 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr() 60 if (o >= L->top) return NONVALIDVALUE; in index2addr() 64 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr() 65 return L->top + idx; in index2addr() 96 if (L->stack_last - L->top > size) /* stack large enough? */ in lua_checkstack() 99 int inuse = cast_int(L->top - L->stack) + EXTRA_STACK; in lua_checkstack() 105 if (res && ci->top < L->top + size) in lua_checkstack() 106 ci->top = L->top + size; /* adjust frame top */ in lua_checkstack() 118 api_check(from, to->ci->top - to->top >= n, "not enough elements to move"); in lua_xmove() 119 from->top -= n; in lua_xmove() [all …]
|
D | lvm.c | 87 ci->func = L->top - 1; /* protect stack below results */ in traceexec() 96 setobj2s(L, L->top++, f); /* push function */ in callTM() 97 setobj2s(L, L->top++, p1); /* 1st argument */ in callTM() 98 setobj2s(L, L->top++, p2); /* 2nd argument */ in callTM() 100 setobj2s(L, L->top++, p3); /* 3rd argument */ in callTM() 102 luaD_call(L, L->top - (4 - hasres), hasres, isLua(L->ci)); in callTM() 105 setobjs2s(L, p3, --L->top); in callTM() 202 if (!call_binTM(L, p1, p2, L->top, event)) in call_orderTM() 205 return !l_isfalse(L->top); in call_orderTM() 288 callTM(L, tm, t1, t2, L->top, 1); /* call TM */ in luaV_equalobj_() [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/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/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/javassist/src/main/javassist/bytecode/analysis/ |
D | Frame.java | 26 private int top; field in Frame 86 top = 0; in clearStack() 98 return top - 1; in getTopIndex() 117 if (top < 1) in peek() 120 return stack[top - 1]; in peek() 129 if (top < 1) in pop() 131 return stack[--top]; in pop() 140 stack[top++] = type; in push() 154 frame.top = top; in copy() 167 frame.top = top; in copyStack() [all …]
|
/external/fmtlib/doc/bootstrap/ |
D | tooltip.less | 19 &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; } 21 &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; } 44 // Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1 46 &.top .tooltip-arrow { 51 border-top-color: @tooltip-arrow-color; 53 &.top-left .tooltip-arrow { 58 border-top-color: @tooltip-arrow-color; 60 &.top-right .tooltip-arrow { 65 border-top-color: @tooltip-arrow-color; 68 top: 50%; [all …]
|