Home
last modified time | relevance | path

Searched defs:d (Results 1 – 25 of 3477) sorted by relevance

12345678910>>...140

/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
DTimeUnit.java19 public long toNanos(long d) { return d; } in toNanos()
20 public long toMicros(long d) { return d/(C1/C0); } in toMicros()
21 public long toMillis(long d) { return d/(C2/C0); } in toMillis()
22 public long toSeconds(long d) { return d/(C3/C0); } in toSeconds()
23 public long toMinutes(long d) { return d/(C4/C0); } in toMinutes()
24 public long toHours(long d) { return d/(C5/C0); } in toHours()
25 public long toDays(long d) { return d/(C6/C0); } in toDays()
26 public long convert(long d, TimeUnit u) { return u.toNanos(d); } in convert()
27 int excessNanos(long d, long m) { return (int)(d - (m*C2)); } in excessNanos()
30 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); } in toNanos()
[all …]
/external/squashfs-tools/squashfs-tools/
Dsquashfs_swap.h45 #define _SQUASHFS_SWAP_SUPER_BLOCK(s, d, SWAP_FUNC) {\ argument
67 #define _SQUASHFS_SWAP_DIR_INDEX(s, d, SWAP_FUNC) {\ argument
73 #define _SQUASHFS_SWAP_BASE_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
82 #define _SQUASHFS_SWAP_IPC_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
92 #define _SQUASHFS_SWAP_LIPC_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
103 #define _SQUASHFS_SWAP_DEV_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
114 #define _SQUASHFS_SWAP_LDEV_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
126 #define _SQUASHFS_SWAP_SYMLINK_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
137 #define _SQUASHFS_SWAP_REG_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
150 #define _SQUASHFS_SWAP_LREG_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
[all …]
/external/libexif/libexif/
Dexif-mnote-data.c35 exif_mnote_data_construct (ExifMnoteData *d, ExifMem *mem) in exif_mnote_data_construct()
49 exif_mnote_data_ref (ExifMnoteData *d) in exif_mnote_data_ref()
55 exif_mnote_data_free (ExifMnoteData *d) in exif_mnote_data_free()
71 exif_mnote_data_unref (ExifMnoteData *d) in exif_mnote_data_unref()
80 exif_mnote_data_load (ExifMnoteData *d, const unsigned char *buf, in exif_mnote_data_load()
88 exif_mnote_data_save (ExifMnoteData *d, unsigned char **buf, in exif_mnote_data_save()
96 exif_mnote_data_set_byte_order (ExifMnoteData *d, ExifByteOrder o) in exif_mnote_data_set_byte_order()
103 exif_mnote_data_set_offset (ExifMnoteData *d, unsigned int o) in exif_mnote_data_set_offset()
110 exif_mnote_data_count (ExifMnoteData *d) in exif_mnote_data_count()
117 exif_mnote_data_get_id (ExifMnoteData *d, unsigned int n) in exif_mnote_data_get_id()
[all …]
/external/mesa3d/src/mesa/main/
Dformat_pack.c100 GLuint *d = ((GLuint *) dst); in pack_ubyte_RGBA8888() local
115 GLuint *d = ((GLuint *) dst); in pack_row_ubyte_RGBA8888() local
126 GLuint *d = ((GLuint *) dst); in pack_row_float_RGBA8888() local
144 GLuint *d = ((GLuint *) dst); in pack_ubyte_RGBA8888_REV() local
159 GLuint *d = ((GLuint *) dst); in pack_row_ubyte_RGBA8888_REV() local
170 GLuint *d = ((GLuint *) dst); in pack_row_float_RGBA8888_REV() local
187 GLuint *d = ((GLuint *) dst); in pack_ubyte_ARGB8888() local
202 GLuint *d = ((GLuint *) dst); in pack_row_ubyte_ARGB8888() local
213 GLuint *d = ((GLuint *) dst); in pack_row_float_ARGB8888() local
230 GLuint *d = ((GLuint *) dst); in pack_ubyte_ARGB8888_REV() local
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/js/
Dtransform-handler.js4 {t: 'skew', d: [{deg: 10}, {deg: 0}]}, property
5 {t: 'skew', d: [{deg: 12}, {deg: 45}]}, property
6 {t: 'skewx', d: [{deg: 0}]}, property
7 {t: 'skewy', d: [{rad: 1.5}]} property
13 {t: 'scale', d: [-2, -2]}, property
14 {t: 'scale', d: [3, -4]}, property
15 {t: 'scalex', d: [5]}, property
16 {t: 'scaley', d: [-1]}, property
17 {t: 'scalez', d: [-3]} property
20 [{t: 'scale3d', d: [-2, 0, 7]}]); property
[all …]
/external/caliper/examples/src/main/java/examples/
DDoubleToStringBenchmark.java30 @Override String convert(double d) { in convert()
33 @Override String convert(Double d) { in convert()
38 @Override String convert(double d) { in convert()
41 @Override String convert(Double d) { in convert()
46 @Override String convert(double d) { in convert()
49 @Override String convert(Double d) { in convert()
54 @Override String convert(double d) { in convert()
57 @Override String convert(Double d) { in convert()
63 abstract String convert(double d); in convert()
64 abstract String convert(Double d); in convert()
[all …]
DDoubleToStringBenchmark2.java34 final double d; field in DoubleToStringBenchmark2.Value
36 Value(double d) { in Value()
46 Double d = value.d; in toString() local
51 double d = value.d; in toString() local
62 Double d = value.d; in stringValueOf() local
67 double d = value.d; in stringValueOf() local
78 Double d = value.d; in stringFormat() local
83 double d = value.d; in stringFormat() local
94 Double d = value.d; in quoteTrick() local
99 double d = value.d; in quoteTrick() local
/external/elfutils/libcpu/
Di386_data.h88 data_prefix (struct output_data *d) in data_prefix()
157 general_mod$r_m (struct output_data *d) in general_mod$r_m()
388 FCT_MOD$R_M (struct output_data *d) in FCT_MOD$R_M()
418 FCT_Mod$R_m (struct output_data *d) in FCT_Mod$R_m()
443 generic_abs (struct output_data *d, const char *absstring in generic_abs()
483 FCT_absval (struct output_data *d) in FCT_absval()
493 FCT_abs (struct output_data *d) in FCT_abs()
503 FCT_ax (struct output_data *d) in FCT_ax()
529 FCT_ax$w (struct output_data *d) in FCT_ax$w()
551 FCT_crdb (struct output_data *d, const char *regstr) in FCT_crdb()
[all …]
/external/skia/src/core/
DSkDither.h22 #define SkDITHER_R32_FOR_565_MACRO(r, d) (r + d - (r >> 5)) argument
23 #define SkDITHER_G32_FOR_565_MACRO(g, d) (g + (d >> 1) - (g >> 6)) argument
24 #define SkDITHER_B32_FOR_565_MACRO(b, d) (b + d - (b >> 5)) argument
26 #define SkDITHER_A32_FOR_4444_MACRO(a, d) (a + 15 - (a >> 4)) argument
27 #define SkDITHER_R32_FOR_4444_MACRO(r, d) (r + d - (r >> 4)) argument
28 #define SkDITHER_G32_FOR_4444_MACRO(g, d) (g + d - (g >> 4)) argument
29 #define SkDITHER_B32_FOR_4444_MACRO(b, d) (b + d - (b >> 4)) argument
32 inline unsigned SkDITHER_R32_FOR_565(unsigned r, unsigned d) in SkDITHER_R32_FOR_565()
40 inline unsigned SkDITHER_G32_FOR_565(unsigned g, unsigned d) in SkDITHER_G32_FOR_565()
48 inline unsigned SkDITHER_B32_FOR_565(unsigned b, unsigned d) in SkDITHER_B32_FOR_565()
[all …]
/external/mesa3d/src/glx/apple/
Dapple_glx_drawable.c105 drawable_unlock(struct apple_glx_drawable *d) in drawable_unlock()
119 reference_drawable(struct apple_glx_drawable *d) in reference_drawable()
127 release_drawable(struct apple_glx_drawable *d) in release_drawable()
137 destroy_drawable(struct apple_glx_drawable *d) in destroy_drawable()
199 destroy_drawable_callback(struct apple_glx_drawable *d) in destroy_drawable_callback()
227 is_pbuffer(struct apple_glx_drawable *d) in is_pbuffer()
233 is_pixmap(struct apple_glx_drawable *d) in is_pixmap()
239 common_init(Display * dpy, GLXDrawable drawable, struct apple_glx_drawable *d) in common_init()
324 struct apple_glx_drawable *d; in apple_glx_drawable_create() local
364 struct apple_glx_drawable *d, *dnext; in apple_glx_garbage_collect_drawables() local
[all …]
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
Dctor_init.pass.cpp25 D d = {}; in main() local
32 D d = {10}; in main() local
39 D d = {10, 30}; in main() local
47 D d = {30, 10}; in main() local
55 D d = {30, 0, 10}; in main() local
64 D d = {0, 30, 10}; in main() local
73 D d = {0, 0, 10}; in main() local
Dctor_iterator.pass.cpp26 D d(p0, p0); in main() local
34 D d(p0, p0+1); in main() local
42 D d(p0, p0+2); in main() local
51 D d(p0, p0+2); in main() local
60 D d(p0, p0+3); in main() local
70 D d(p0, p0+3); in main() local
80 D d(p0, p0+3); in main() local
/external/skia/src/sfnt/
DSkPreprocessorSeq.h567 #define SK_SEQ_FOREACH_0(op,lop,d,x,t) argument
568 #define SK_SEQ_FOREACH_1(op,lop,d,x,t) lop(d,x) argument
569 #define SK_SEQ_FOREACH_2(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_1(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument
570 #define SK_SEQ_FOREACH_3(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_2(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument
571 #define SK_SEQ_FOREACH_4(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_3(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument
572 #define SK_SEQ_FOREACH_5(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_4(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument
573 #define SK_SEQ_FOREACH_6(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_5(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument
574 #define SK_SEQ_FOREACH_7(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_6(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument
575 #define SK_SEQ_FOREACH_8(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_7(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument
576 #define SK_SEQ_FOREACH_9(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_8(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument
[all …]
/external/avahi/avahi-ui/
Davahi-ui.c305 AuiServiceDialog *d = AUI_SERVICE_DIALOG(data); in service_pulse_callback() local
312 AuiServiceDialog *d = AUI_SERVICE_DIALOG(data); in domain_pulse_callback() local
319 AuiServiceDialog *d = AUI_SERVICE_DIALOG(userdata); in client_callback() local
350 AuiServiceDialog *d = AUI_SERVICE_DIALOG(userdata); in resolve_callback() local
411 AuiServiceDialog *d = AUI_SERVICE_DIALOG(userdata); in browse_callback() local
540 static void domain_make_default_selection(AuiServiceDialog *d, const gchar *name, GtkTreeIter *iter… in domain_make_default_selection()
568 AuiServiceDialog *d = AUI_SERVICE_DIALOG(userdata); in domain_browse_callback() local
670 static const gchar *get_domain_name(AuiServiceDialog *d) { in get_domain_name()
697 AuiServiceDialog *d = AUI_SERVICE_DIALOG(data); in start_callback() local
789 AuiServiceDialog *d = AUI_SERVICE_DIALOG(object); in aui_service_dialog_finalize() local
[all …]
/external/libnl/lib/route/sch/
Dhtb.c66 struct rtnl_htb_qdisc *d; in htb_qdisc_msg_parser() local
104 struct rtnl_htb_class *d; in htb_class_msg_parser() local
142 struct rtnl_htb_qdisc *d = (struct rtnl_htb_qdisc *) qdisc->q_subdata; in htb_qdisc_dump_line() local
160 struct rtnl_htb_class *d = (struct rtnl_htb_class *) class->c_subdata; in htb_class_dump_line() local
180 struct rtnl_htb_class *d = (struct rtnl_htb_class *) class->c_subdata; in htb_class_dump_details() local
231 struct rtnl_htb_qdisc *d = (struct rtnl_htb_qdisc *) qdisc->q_subdata; in htb_qdisc_get_opts() local
268 struct rtnl_htb_class *d = (struct rtnl_htb_class *) class->c_subdata; in htb_class_get_opts() local
355 struct rtnl_htb_qdisc *d = htb_qdisc(qdisc); in rtnl_htb_set_rate2quantum() local
370 struct rtnl_htb_qdisc *d = htb_qdisc(qdisc); in rtnl_htb_set_defcls() local
380 struct rtnl_htb_class *d = htb_class(class); in rtnl_htb_set_prio() local
[all …]
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
Deval.pass.cpp38 D d(5, .75); in main() local
54 double d = (u[i] - mean); in main() local
78 D d(30, .03125); in main() local
94 double d = (u[i] - mean); in main() local
118 D d(40, .25); in main() local
134 double d = (u[i] - mean); in main() local
158 D d(40, 0); in main() local
174 double d = (u[i] - mean); in main() local
204 D d(40, 1); in main() local
220 double d = (u[i] - mean); in main() local
[all …]
/external/clang/test/CodeGenCXX/
Dcfi-vcall.cpp84 void df1(D *d) { in df1()
92 void dg1(D *d) { in dg1()
100 void dh1(D *d) { in dh1()
109 void df2(D *d) { in df2()
117 void df3(D *d) { in df3()
122 D d; variable
152 void f(D *d) { in f()
/external/v8/test/mjsunit/asm/poppler/
Dpoppler.js939 'd': 'double', property
7313 function Kd(a){a=a|0;var b=0;b=i;i=i+a|0;i=i+7&-8;return b|0}function Ld(){return i|0}function Md(a… argument
7317 function Ip(b,d,e,f,g){b=b|0;d=d|0;e=e|0;f=+f;g=g|0;var j=0,k=0,l=0,m=0.0,n=0.0,o=0.0,p=0.0,q=0.0,r… argument
7321 function $K(a,b,d,e,f,g){a=a|0;b=b|0;d=d|0;e=e|0;f=f|0;g=g|0;var h=0;h=i;do{if((d|b|e|0)<0){a=6}els… argument
7325 …>2]=177856;v=q+8|0;c[v>>2]=f;u=q+12|0;c[u>>2]=g;s=f+7>>3;r=q+16|0;c[r>>2]=s;do{if((f|0)<1){t=5}els… argument
7329 function wx(b,d){b=b|0;d=d|0;var e=0,f=0,g=0,h=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,s=0,t=0,u=0,v=0,w=… argument
7333 function ZR(a,d){a=a|0;d=d|0;var f=0,g=0,h=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=… argument
7337 …+M}n=b+4|0;o=b+100|0;do{j=c[n>>2]|0;if(j>>>0<(c[o>>2]|0)>>>0){c[n>>2]=j+1;F=d[j]|0}else{F=PW(b)|0}… argument
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/
Deval.pass.cpp38 D d; in main() local
54 double d = (u[i] - mean); in main() local
79 D d; in main() local
95 double d = (u[i] - mean); in main() local
120 D d; in main() local
136 double d = (u[i] - mean); in main() local
161 D d; in main() local
177 double d = (u[i] - mean); in main() local
202 D d; in main() local
218 double d = (u[i] - mean); in main() local
[all …]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DNFAToDFAConverter.java86 DFAState d = (DFAState) work.get(0); in convert() local
201 protected void findNewDFAStatesAndAddDFATransitions(DFAState d) { in findNewDFAStatesAndAddDFATransitions()
408 protected static int addTransition(DFAState d, in addTransition()
457 public void closure(DFAState d) { in closure()
481 d, in closure() local
595 DFAState d, in closure()
712 d, in closure() local
759 d, in closure() local
768 d, in closure() local
809 public static boolean closureIsBusy(DFAState d, in closureIsBusy()
[all …]
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
Deval.pass.cpp38 D d; in main() local
54 D::result_type d = (u[i] - mean); in main() local
78 D d; in main() local
94 D::result_type d = (u[i] - mean); in main() local
118 D d; in main() local
134 D::result_type d = (u[i] - mean); in main() local
158 D d; in main() local
174 D::result_type d = (u[i] - mean); in main() local
198 D d; in main() local
214 D::result_type d = (u[i] - mean); in main() local
[all …]
/external/v8/test/mjsunit/
Ddate.js87 var d = new Date(); variable
150 var d = new Date(); variable
174 d = new Date(1969, 12, 1, 99999999999); variable
176 d = new Date(1969, 12, 1, -99999999999); variable
178 d = new Date(1969, 12, 1, Infinity); variable
180 d = new Date(1969, 12, 1, -Infinity); variable
182 d = new Date(1969, 12, 1, 0); variable
185 d = new Date(1969, 12, 1, 0); variable
/external/clang/test/SemaCXX/
Dconversion-delete-expr.cpp12 void f (D d) in f()
26 void f1 (D1 d) in f1()
40 void f2 (D2 d) in f2()
57 void f3 (D3 d) in f3()
89 void foo6(const Derived cd, Derived d) { in foo6()
105 void foo7 (DD d) in foo7()
/external/avahi/avahi-common/
Ddbus-watch-glue.c68 static ConnectionData *connection_data_ref(ConnectionData *d) { in connection_data_ref()
76 static void connection_data_unref(ConnectionData *d) { in connection_data_unref()
86 static void request_dispatch(ConnectionData *d, int enable) { in request_dispatch()
98 ConnectionData *d = userdata; in dispatch_timeout_callback() local
166 ConnectionData *d = userdata; in add_watch() local
175 ConnectionData *d = userdata; in remove_watch() local
188 ConnectionData *d = userdata; in watch_toggled() local
256 ConnectionData *d = userdata; in add_timeout() local
287 ConnectionData *d = userdata; in remove_timeout() local
311 ConnectionData *d = userdata; in dispatch_status() local
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DFieldVector.java101 FieldVector<T> mapAdd(T d); in mapAdd()
109 FieldVector<T> mapAddToSelf(T d); in mapAddToSelf()
116 FieldVector<T> mapSubtract(T d); in mapSubtract()
124 FieldVector<T> mapSubtractToSelf(T d); in mapSubtractToSelf()
131 FieldVector<T> mapMultiply(T d); in mapMultiply()
139 FieldVector<T> mapMultiplyToSelf(T d); in mapMultiplyToSelf()
146 FieldVector<T> mapDivide(T d); in mapDivide()
154 FieldVector<T> mapDivideToSelf(T d); in mapDivideToSelf()
302 FieldVector<T> append(T d); in append()

12345678910>>...140