/frameworks/compile/libbcc/runtime/lib/ |
D | floatundisf.c | 32 int sd = N - __builtin_clzll(a); /* number of significant digits */ in __floatundisf() local 33 int e = sd - 1; /* 8 exponent */ in __floatundisf() 34 if (sd > FLT_MANT_DIG) in __floatundisf() 44 switch (sd) in __floatundisf() 52 a = (a >> (sd - (FLT_MANT_DIG+2))) | in __floatundisf() 53 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0); in __floatundisf() 69 a <<= (FLT_MANT_DIG - sd); in __floatundisf()
|
D | floatuntisf.c | 36 int sd = N - __clzti2(a); /* number of significant digits */ in __floatuntisf() local 37 int e = sd - 1; /* exponent */ in __floatuntisf() 38 if (sd > FLT_MANT_DIG) in __floatuntisf() 48 switch (sd) in __floatuntisf() 56 a = (a >> (sd - (FLT_MANT_DIG+2))) | in __floatuntisf() 57 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0); in __floatuntisf() 73 a <<= (FLT_MANT_DIG - sd); in __floatuntisf()
|
D | floatuntidf.c | 36 int sd = N - __clzti2(a); /* number of significant digits */ in __floatuntidf() local 37 int e = sd - 1; /* exponent */ in __floatuntidf() 38 if (sd > DBL_MANT_DIG) in __floatuntidf() 48 switch (sd) in __floatuntidf() 56 a = (a >> (sd - (DBL_MANT_DIG+2))) | in __floatuntidf() 57 ((a & ((tu_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0); in __floatuntidf() 73 a <<= (DBL_MANT_DIG - sd); in __floatuntidf()
|
D | floatuntixf.c | 38 int sd = N - __clzti2(a); /* number of significant digits */ in __floatuntixf() local 39 int e = sd - 1; /* exponent */ in __floatuntixf() 40 if (sd > LDBL_MANT_DIG) in __floatuntixf() 50 switch (sd) in __floatuntixf() 58 a = (a >> (sd - (LDBL_MANT_DIG+2))) | in __floatuntixf() 59 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0); in __floatuntixf() 75 a <<= (LDBL_MANT_DIG - sd); in __floatuntixf()
|
D | floatdisf.c | 34 int sd = N - __builtin_clzll(a); /* number of significant digits */ in __floatdisf() local 35 int e = sd - 1; /* exponent */ in __floatdisf() 36 if (sd > FLT_MANT_DIG) in __floatdisf() 46 switch (sd) in __floatdisf() 54 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) | in __floatdisf() 55 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0); in __floatdisf() 71 a <<= (FLT_MANT_DIG - sd); in __floatdisf()
|
D | floattisf.c | 38 int sd = N - __clzti2(a); /* number of significant digits */ in __floattisf() local 39 int e = sd - 1; /* exponent */ in __floattisf() 40 if (sd > FLT_MANT_DIG) in __floattisf() 50 switch (sd) in __floattisf() 58 a = ((tu_int)a >> (sd - (FLT_MANT_DIG+2))) | in __floattisf() 59 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0); in __floattisf() 75 a <<= (FLT_MANT_DIG - sd); in __floattisf()
|
D | floattidf.c | 38 int sd = N - __clzti2(a); /* number of significant digits */ in __floattidf() local 39 int e = sd - 1; /* exponent */ in __floattidf() 40 if (sd > DBL_MANT_DIG) in __floattidf() 50 switch (sd) in __floattidf() 58 a = ((tu_int)a >> (sd - (DBL_MANT_DIG+2))) | in __floattidf() 59 ((a & ((tu_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0); in __floattidf() 75 a <<= (DBL_MANT_DIG - sd); in __floattidf()
|
D | floattixf.c | 40 int sd = N - __clzti2(a); /* number of significant digits */ in __floattixf() local 41 int e = sd - 1; /* exponent */ in __floattixf() 42 if (sd > LDBL_MANT_DIG) in __floattixf() 52 switch (sd) in __floattixf() 60 a = ((tu_int)a >> (sd - (LDBL_MANT_DIG+2))) | in __floattixf() 61 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0); in __floattixf() 77 a <<= (LDBL_MANT_DIG - sd); in __floattixf()
|
D | floatdidf.c | 60 int sd = N - __builtin_clzll(a); /* number of significant digits */ in __floatdidf() local 61 int e = sd - 1; /* exponent */ in __floatdidf() 62 if (sd > DBL_MANT_DIG) in __floatdidf() 72 switch (sd) in __floatdidf() 80 a = ((du_int)a >> (sd - (DBL_MANT_DIG+2))) | in __floatdidf() 81 ((a & ((du_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0); in __floatdidf() 97 a <<= (DBL_MANT_DIG - sd); in __floatdidf()
|
D | floatundidf.c | 61 int sd = N - __builtin_clzll(a); /* number of significant digits */ in __floatundidf() local 62 int e = sd - 1; /* exponent */ in __floatundidf() 63 if (sd > DBL_MANT_DIG) in __floatundidf() 73 switch (sd) in __floatundidf() 81 a = (a >> (sd - (DBL_MANT_DIG+2))) | in __floatundidf() 82 ((a & ((du_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0); in __floatundidf() 98 a <<= (DBL_MANT_DIG - sd); in __floatundidf()
|
/frameworks/base/core/java/android/app/ |
D | LoadedApk.java | 558 LoadedApk.ServiceDispatcher sd = it.next(); in removeContextRegistrations() local 561 + sd.getServiceConnection() + " that was originally bound here"); in removeContextRegistrations() 562 leak.setStackTrace(sd.getLocation().getStackTrace()); in removeContextRegistrations() 569 sd.getIServiceConnection()); in removeContextRegistrations() 573 sd.doForget(); in removeContextRegistrations() 853 LoadedApk.ServiceDispatcher sd = null; in getServiceDispatcher() local 856 sd = map.get(c); in getServiceDispatcher() 858 if (sd == null) { in getServiceDispatcher() 859 sd = new ServiceDispatcher(c, context, handler, flags); in getServiceDispatcher() 864 map.put(c, sd); in getServiceDispatcher() [all …]
|
D | ContextImpl.java | 1189 IServiceConnection sd; in bindService() local 1191 sd = mPackageInfo.getServiceDispatcher(conn, getOuterContext(), in bindService() 1207 sd, flags, userId); in bindService() 1221 IServiceConnection sd = mPackageInfo.forgetServiceDispatcher( in unbindService() local 1224 ActivityManagerNative.getDefault().unbindService(sd); in unbindService()
|
/frameworks/native/opengl/libagl/ |
D | primitives.cpp | 902 GLfixed sd = dot4(equation.v, s->eye.v); in clip_triangle() local 907 if (sd >= 0) { in clip_triangle() 914 const GLfixed t = clipDivide(sd, sd-pd); in clip_triangle() 925 const GLfixed t = clipDivide(pd, pd-sd); in clip_triangle() 939 sd = pd; in clip_triangle() 967 GLfixed sd = frustumPlaneDist(plane, s->clip); in clip_triangle() local 972 if (sd >= 0) { in clip_triangle() 979 const GLfixed t = clipDivide(sd, sd-pd); in clip_triangle() 990 const GLfixed t = clipDivide(pd, pd-sd); in clip_triangle() 1004 sd = pd; in clip_triangle() [all …]
|
/frameworks/compile/mclinker/tools/llvm-mcld/ |
D | llvm-mcld.cpp | 558 cl::list<mcld::MCLDDirectory>::iterator sd; in ProcessLinkerInputsFromCommand() local 560 for (sd=ArgSearchDirList.begin(); sd!=sdEnd; ++sd) { in ProcessLinkerInputsFromCommand() 561 if (sd->isInSysroot()) in ProcessLinkerInputsFromCommand() 562 sd->setSysroot(pOption.info().options().sysroot()); in ProcessLinkerInputsFromCommand() 563 if (exists(sd->path()) && is_directory(sd->path())) { in ProcessLinkerInputsFromCommand() 564 pOption.info().options().directories().add(*sd); in ProcessLinkerInputsFromCommand() 569 << sd->name() in ProcessLinkerInputsFromCommand()
|
/frameworks/base/docs/html/training/search/ |
D | backward-compat.jd | 16 <li><a href="{@docRoot}training/search/backward-compat.html#provide-sd">Provide the Search 42 <h2 id="provide-sd">Provide the Search Dialog for Older Devices</h2>
|
/frameworks/base/services/java/com/android/server/wm/ |
D | WindowManagerService.java | 6975 final StartingData sd = wtoken.startingData; in handleMessage() local 6977 if (sd == null) { in handleMessage() 6983 + wtoken + ": pkg=" + sd.pkg); in handleMessage() 6988 wtoken.token, sd.pkg, sd.theme, sd.compatInfo, in handleMessage() 6989 sd.nonLocalizedLabel, sd.labelRes, sd.icon, sd.windowFlags); in handleMessage()
|