/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
D | regress-111557.js | 54 var top = this; 56 top.authors = new Array(); 57 top.titles = new Array(); 61 top.authors[i] = "zPROD xA.5375."; 62 top.titles[i] = "NDS Libraries for C"; 65 top.authors[i] = "zFLDR xB.5375.0100."; 66 top.titles[i] = "NDS Backup Services"; 69 top.authors[i] = "zFLDR xC.5375.0100.0001."; 70 top.titles[i] = "Functions"; 73 top.authors[i] = "zHTML xD.5375.0100.0001.0001."; [all …]
|
/external/linux-tools-perf/util/ |
D | top.c | 21 static double sym_weight(const struct sym_entry *sym, struct perf_top *top) in sym_weight() argument 26 if (!top->display_weighted) in sym_weight() 29 for (counter = 1; counter < top->evlist->nr_entries - 1; counter++) in sym_weight() 37 static void perf_top__remove_active_sym(struct perf_top *top, struct sym_entry *syme) in perf_top__remove_active_sym() argument 39 pthread_mutex_lock(&top->active_symbols_lock); in perf_top__remove_active_sym() 41 pthread_mutex_unlock(&top->active_symbols_lock); in perf_top__remove_active_sym() 70 size_t perf_top__header_snprintf(struct perf_top *top, char *bf, size_t size) in perf_top__header_snprintf() argument 73 float samples_per_sec = top->samples / top->delay_secs; in perf_top__header_snprintf() 74 float ksamples_per_sec = top->kernel_samples / top->delay_secs; in perf_top__header_snprintf() 75 float esamples_percent = (100.0 * top->exact_samples) / top->samples; in perf_top__header_snprintf() [all …]
|
D | pstack.c | 19 unsigned short top; member 40 return self->top == 0; in pstack__empty() 45 unsigned short i = self->top, last_index = self->top - 1; in pstack__remove() 53 --self->top; in pstack__remove() 62 if (self->top == self->max_nr_entries) { in pstack__push() 63 pr_err("%s: top=%d, overflow!\n", __func__, self->top); in pstack__push() 66 self->entries[self->top++] = key; in pstack__push() 73 if (self->top == 0) { in pstack__pop() 78 ret = self->entries[--self->top]; in pstack__pop() 79 self->entries[self->top] = NULL; in pstack__pop()
|
/external/linux-tools-perf/ |
D | builtin-top.c | 83 static struct perf_top top = { variable 89 .active_symbols = LIST_HEAD_INIT(top.active_symbols), 145 top.print_entries = ws->ws_row; in update_print_entries() 147 if (top.print_entries > 9) in update_print_entries() 148 top.print_entries -= 9; in update_print_entries() 188 if (symbol__alloc_hist(sym, top.evlist->nr_entries) < 0) { in parse_source() 205 top.sym_filter_entry = syme; in parse_source() 223 if (syme != top.sym_filter_entry) in record_precise_ip() 255 printf("Showing %s for %s\n", event_name(top.sym_evsel), symbol->name); in show_details() 258 more = symbol__annotate_printf(symbol, syme->map, top.sym_evsel->idx, in show_details() [all …]
|
/external/freetype/src/psaux/ |
D | t1decode.c | 387 decoder->top = decoder->stack; in t1_decoder_parse_charstrings() 426 FT_Long* top = decoder->top; in t1_decoder_parse_charstrings() local 437 FT_TRACE5(( " (%d)", decoder->top - decoder->stack )); in t1_decoder_parse_charstrings() 656 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in t1_decoder_parse_charstrings() 669 *top++ = value; in t1_decoder_parse_charstrings() 670 decoder->top = top; in t1_decoder_parse_charstrings() 683 if ( top - decoder->stack < 2 ) in t1_decoder_parse_charstrings() 686 top -= 2; in t1_decoder_parse_charstrings() 688 subr_no = Fix2Int( top[1] ); in t1_decoder_parse_charstrings() 689 arg_cnt = Fix2Int( top[0] ); in t1_decoder_parse_charstrings() [all …]
|
/external/webp/src/dsp/ |
D | enc.c | 254 const uint8_t* top, int size) { in VerticalPred() argument 256 if (top) { in VerticalPred() 257 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size); in VerticalPred() 276 const uint8_t* top, int size) { in TrueMotion() argument 279 if (top) { in TrueMotion() 285 dst[x] = clip_table[top[x]]; in TrueMotion() 297 if (top) { in TrueMotion() 298 VerticalPred(dst, top, size); in TrueMotion() 306 const uint8_t* top, in DCMode() argument 310 if (top) { in DCMode() [all …]
|
/external/linux-tools-perf/util/ui/browsers/ |
D | top.c | 36 struct perf_top *top = browser->priv; in perf_top_browser__write() local 44 if (top->evlist->nr_entries == 1 || !top->display_weighted) { in perf_top_browser__write() 73 struct perf_top *top = browser->b.priv; in perf_top_browser__update_rb_tree() local 77 browser->b.top = NULL; in perf_top_browser__update_rb_tree() 78 browser->sum_ksamples = perf_top__decay_samples(top, &browser->root); in perf_top_browser__update_rb_tree() 82 if (top->rb_entries == 0) in perf_top_browser__update_rb_tree() 85 perf_top__find_widths(top, &browser->root, &browser->dso_width, in perf_top_browser__update_rb_tree() 99 browser->b.nr_entries = top->rb_entries; in perf_top_browser__update_rb_tree() 123 struct perf_top *top = browser->b.priv; in perf_top_browser__annotate() local 130 top->sym_filter_entry = NULL; in perf_top_browser__annotate() [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/openssl/crypto/bn/ |
D | bn_word.c | 77 for (i=a->top-1; i>=0; i--) in BN_mod_word() 101 if (a->top == 0) in BN_div_word() 110 for (i=a->top-1; i>=0; i--) in BN_div_word() 119 if ((a->top > 0) && (a->d[a->top-1] == 0)) in BN_div_word() 120 a->top--; in BN_div_word() 148 if (((BN_ULONG)(a->d[a->top - 1] + 1) == 0) && in BN_add_word() 149 (bn_wexpand(a,a->top+1) == NULL)) in BN_add_word() 154 if (i >= a->top) in BN_add_word() 165 if (i >= a->top) in BN_add_word() 166 a->top++; in BN_add_word() [all …]
|
D | bn_exp.c | 229 if (a->top == 1 && !a->neg && (BN_get_flags(p, BN_FLG_CONSTTIME) == 0)) in BN_mod_exp() 537 static int MOD_EXP_CTIME_COPY_TO_PREBUF(const BIGNUM *b, int top, unsigned char *buf, int idx, int … in MOD_EXP_CTIME_COPY_TO_PREBUF() argument 541 if (top > b->top) in MOD_EXP_CTIME_COPY_TO_PREBUF() 542 top = b->top; /* this works because 'buf' is explicitly zeroed */ in MOD_EXP_CTIME_COPY_TO_PREBUF() 543 for (i = 0, j=idx; i < top * sizeof b->d[0]; i++, j+=width) in MOD_EXP_CTIME_COPY_TO_PREBUF() 551 static int MOD_EXP_CTIME_COPY_FROM_PREBUF(BIGNUM *b, int top, unsigned char *buf, int idx, int widt… in MOD_EXP_CTIME_COPY_FROM_PREBUF() argument 555 if (bn_wexpand(b, top) == NULL) in MOD_EXP_CTIME_COPY_FROM_PREBUF() 558 for (i=0, j=idx; i < top * sizeof b->d[0]; i++, j+=width) in MOD_EXP_CTIME_COPY_FROM_PREBUF() 563 b->top = top; in MOD_EXP_CTIME_COPY_FROM_PREBUF() 582 int top; in BN_mod_exp_mont_consttime() local [all …]
|
D | bn_shift.c | 74 if (bn_wexpand(r,a->top+1) == NULL) return(0); in BN_lshift1() 75 r->top=a->top; in BN_lshift1() 79 if (bn_wexpand(r,a->top+1) == NULL) return(0); in BN_lshift1() 84 for (i=0; i<a->top; i++) in BN_lshift1() 93 r->top++; in BN_lshift1() 112 i = a->top; in BN_rshift1() 130 r->top=j; in BN_rshift1() 146 if (bn_wexpand(r,a->top+nw+1) == NULL) return(0); in BN_lshift() 151 t[a->top+nw]=0; in BN_lshift() 153 for (i=a->top-1; i>=0; i--) in BN_lshift() [all …]
|
D | bn_lib.c | 231 int i = a->top - 1; in BN_num_bits() 289 ret->top=0; in BN_new() 328 for (i=b->top>>2; i>0; i--,A+=4,B+=4) in bn_expand_internal() 343 switch (b->top&3) in bn_expand_internal() 357 memcpy(A,b->d,sizeof(b->d[0])*b->top); in bn_expand_internal() 396 r->top = b->top; in bn_dup_expand() 442 if (b->top < b->dmax) in bn_expand2() 445 BN_ULONG *A = &(b->d[b->top]); in bn_expand2() 446 for (i=(b->dmax - b->top)>>3; i>0; i--,A+=8) in bn_expand2() 451 for (i=(b->dmax - b->top)&7; i>0; i--,A++) in bn_expand2() [all …]
|
D | bn_div.c | 106 dv->top=1; 192 if (num->top > 0 && num->d[num->top - 1] == 0) in BN_div() 248 if (snum->top <= sdiv->top+1) in BN_div() 250 if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err; in BN_div() 251 for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0; in BN_div() 252 snum->top = sdiv->top + 2; in BN_div() 256 if (bn_wexpand(snum, snum->top + 1) == NULL) goto err; in BN_div() 257 snum->d[snum->top] = 0; in BN_div() 258 snum->top ++; in BN_div() 262 div_n=sdiv->top; in BN_div() [all …]
|
D | bn_add.c | 114 if (a->top < b->top) in BN_uadd() 116 max = a->top; in BN_uadd() 117 min = b->top; in BN_uadd() 123 r->top=max; in BN_uadd() 153 r->top++; in BN_uadd() 178 max = a->top; in BN_usub() 179 min = b->top; in BN_usub() 257 r->top=max; in BN_usub() 298 max=(a->top > b->top)?a->top:b->top; in BN_sub()
|
/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/ |
D | store-buffer-inl.h | 44 Address* top = reinterpret_cast<Address*>(heap_->store_buffer_top()); in Mark() local 45 *top++ = addr; in Mark() 46 heap_->public_set_store_buffer_top(top); in Mark() 47 if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) { in Mark() 48 ASSERT(top == limit_); in Mark() 51 ASSERT(top < limit_); in Mark() 62 Address* top = old_top_; in EnterDirectlyIntoStoreBuffer() local 63 *top++ = addr; in EnterDirectlyIntoStoreBuffer() 64 old_top_ = top; in EnterDirectlyIntoStoreBuffer() 67 if (top >= old_limit_) { in EnterDirectlyIntoStoreBuffer()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
D | Tooltip.css | 7 body { overflow: auto; margin-top: 0px; margin-bottom: 0px; margin-left: 0.3em; margin-right: … 9 h1 { margin-top: 0.3em; margin-bottom: 0.04em; } 10 h2 { margin-top: 2em; margin-bottom: 0.25em; } 11 h3 { margin-top: 1.7em; margin-bottom: 0.25em; } 12 h4 { margin-top: 2em; margin-bottom: 0.3em; } 13 h5 { margin-top: 0px; margin-bottom: 0px; } 14 p { margin-top: 0em; margin-bottom: 0em; } 16 ul { margin-top: 0px; margin-bottom: 1em; } 17 li { margin-top: 0px; margin-bottom: 0px; } 18 li p { margin-top: 0px; margin-bottom: 0px; } [all …]
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | popover.css | 11 top: 0; 25 margin-top: -25px; 26 top: 0; 30 .popover.top-left-arrow .arrow { 31 /* The default is top-left, no styles needed. */ 34 .popover.top-right-arrow .arrow { 40 top: auto; 42 margin-top: 0; 50 top: auto; 52 margin-top: 0; [all …]
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
D | position_util.js | 71 top: 0, property 94 popupRect.height <= anchorRect.top) { 99 if (popupRect.height > anchorRect.top && 121 style.left = style.right = style.top = style.bottom = 'auto' 127 style.top = anchorRect.bottom + 'px'; 132 if (availRect.height - anchorRect.top >= 0) 133 style.bottom = availRect.height - anchorRect.top + 'px'; 135 style.top = '0'; 187 if (anchorRect.top + popupRect.height <= availRect.height) { 188 style.top = anchorRect.top + 'px'; [all …]
|
/external/tremolo/Tremolo/ |
D | codebook.c | 147 long top=0; in _make_words() local 168 if(chase>=top){ in _make_words() 170 top++; in _make_words() 171 r[chase*2]=top; in _make_words() 176 r[chase*2+bit]=top; in _make_words() 182 if(chase>=top){ in _make_words() 183 top++; in _make_words() 267 long top=s->used_entries*3-2; in _make_decode_table() local 274 top-=4; in _make_decode_table() 275 out[top]=(work[i]>>8 & 0x7f)|0x80; in _make_decode_table() [all …]
|
/external/skia/src/core/ |
D | SkRect.cpp | 12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { in join() argument 14 if (left >= right || top >= bottom) { in join() 20 this->set(left, top, right, bottom); in join() 23 if (top < fTop) fTop = top; in join() 114 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, in intersect() argument 116 if (left < right && top < bottom && !this->isEmpty() && // check for empties in intersect() 117 fLeft < right && left < fRight && fTop < bottom && top < fBottom) in intersect() 120 if (fTop < top) fTop = top; in intersect() 148 void SkRect::join(SkScalar left, SkScalar top, SkScalar right, in join() argument 151 if (left >= right || top >= bottom) { in join() [all …]
|
/external/tinyxml/docs/ |
D | doxygen.css | 89 margin-top: 4px; 95 padding-top: 4px; 98 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top… 109 margin-top: 12px; 124 padding-top : 2px; 129 margin-top : 2px; 137 padding-top : 2px; 142 margin-top : 2px; 171 border-top: 1px none #E0E0E0; 182 border-top: 1px none #E0E0E0; [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | NamespaceMappings.java | 375 private int top = -1; field in NamespaceMappings.Stack 382 clone.top = this.top; in clone() 384 for (int i=0; i <= top; i++) { in clone() 397 top++; in push() 398 if (max <= top) { in push() 405 m_stack[top] = o; in push() 411 if (0 <= top) { in pop() 412 o = m_stack[top]; in pop() 414 top--; in pop() 423 if (0 <= top) { in peek() [all …]
|
/external/clang/docs/ |
D | doxygen.css | 92 margin-top: 4px; 98 padding-top: 4px; 101 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top… 112 margin-top: 12px; 127 padding-top : 2px; 132 margin-top : 2px; 140 padding-top : 2px; 145 margin-top : 2px; 174 border-top: 1px none #E0E0E0; 185 border-top: 1px none #E0E0E0; [all …]
|
/external/llvm/docs/ |
D | doxygen.css | 92 margin-top: 4px; 98 padding-top: 4px; 101 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top… 112 margin-top: 12px; 127 padding-top : 2px; 132 margin-top : 2px; 140 padding-top : 2px; 145 margin-top : 2px; 174 border-top: 1px none #E0E0E0; 185 border-top: 1px none #E0E0E0; [all …]
|