/external/compiler-rt/lib/ |
floatundisf.c | 33 int sd = N - __builtin_clzll(a); /* number of significant digits */ local 34 int e = sd - 1; /* 8 exponent */ 35 if (sd > FLT_MANT_DIG) 45 switch (sd) 53 a = (a >> (sd - (FLT_MANT_DIG+2))) | 54 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0); 70 a <<= (FLT_MANT_DIG - sd);
|
floatuntidf.c | 35 int sd = N - __clzti2(a); /* number of significant digits */ local 36 int e = sd - 1; /* exponent */ 37 if (sd > DBL_MANT_DIG) 47 switch (sd) 55 a = (a >> (sd - (DBL_MANT_DIG+2))) | 56 ((a & ((tu_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0); 72 a <<= (DBL_MANT_DIG - sd);
|
floatuntisf.c | 35 int sd = N - __clzti2(a); /* number of significant digits */ local 36 int e = sd - 1; /* exponent */ 37 if (sd > FLT_MANT_DIG) 47 switch (sd) 55 a = (a >> (sd - (FLT_MANT_DIG+2))) | 56 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0); 72 a <<= (FLT_MANT_DIG - sd);
|
floatuntixf.c | 37 int sd = N - __clzti2(a); /* number of significant digits */ local 38 int e = sd - 1; /* exponent */ 39 if (sd > LDBL_MANT_DIG) 49 switch (sd) 57 a = (a >> (sd - (LDBL_MANT_DIG+2))) | 58 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0); 74 a <<= (LDBL_MANT_DIG - sd);
|
floatdisf.c | 35 int sd = N - __builtin_clzll(a); /* number of significant digits */ local 36 int e = sd - 1; /* exponent */ 37 if (sd > FLT_MANT_DIG) 47 switch (sd) 55 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) | 56 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0); 72 a <<= (FLT_MANT_DIG - sd);
|
floattidf.c | 37 int sd = N - __clzti2(a); /* number of significant digits */ local 38 int e = sd - 1; /* exponent */ 39 if (sd > DBL_MANT_DIG) 49 switch (sd) 57 a = ((tu_int)a >> (sd - (DBL_MANT_DIG+2))) | 58 ((a & ((tu_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0); 74 a <<= (DBL_MANT_DIG - sd);
|
floattisf.c | 37 int sd = N - __clzti2(a); /* number of significant digits */ local 38 int e = sd - 1; /* exponent */ 39 if (sd > FLT_MANT_DIG) 49 switch (sd) 57 a = ((tu_int)a >> (sd - (FLT_MANT_DIG+2))) | 58 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0); 74 a <<= (FLT_MANT_DIG - sd);
|
floattixf.c | 39 int sd = N - __clzti2(a); /* number of significant digits */ local 40 int e = sd - 1; /* exponent */ 41 if (sd > LDBL_MANT_DIG) 51 switch (sd) 59 a = ((tu_int)a >> (sd - (LDBL_MANT_DIG+2))) | 60 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0); 76 a <<= (LDBL_MANT_DIG - sd);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/ |
reverse.pass.cpp | 47 const unsigned sd = sizeof(id)/sizeof(id[0]); local 48 std::reverse(Iter(id), Iter(id+sd));
|
reverse_copy.pass.cpp | 52 const unsigned sd = sizeof(id)/sizeof(id[0]); local 53 int jd[sd] = {-1}; 54 r = std::reverse_copy(InIter(id), InIter(id+sd), OutIter(jd)); 55 assert(base(r) == jd+sd);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.set.operations/includes/ |
includes.pass.cpp | 34 const unsigned sd = sizeof(id)/sizeof(id[0]); local
|
includes_comp.pass.cpp | 35 const unsigned sd = sizeof(id)/sizeof(id[0]); local
|
/external/chromium_org/ipc/ |
file_descriptor_set_posix.cc | 45 struct base::FileDescriptor sd; local 46 sd.fd = fd; 47 sd.auto_close = false; 48 descriptors_.push_back(sd); 58 struct base::FileDescriptor sd; local 59 sd.fd = fd; 60 sd.auto_close = true; 61 descriptors_.push_back(sd); 146 struct base::FileDescriptor sd; local 147 sd.fd = buffer[i] [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/ |
rotate.pass.cpp | 79 const unsigned sd = sizeof(id)/sizeof(id[0]); local 80 r = std::rotate(Iter(id), Iter(id), Iter(id+sd)); 81 assert(base(r) == id+sd); 86 r = std::rotate(Iter(id), Iter(id+1), Iter(id+sd)); 92 r = std::rotate(Iter(id), Iter(id+2), Iter(id+sd)); 98 r = std::rotate(Iter(id), Iter(id+3), Iter(id+sd)); 104 r = std::rotate(Iter(id), Iter(id+sd), Iter(id+sd)); 279 const unsigned sd = sizeof(id)/sizeof(id[0]); local 280 for (int i = 0; i < sd; ++i [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
SsaDumper.java | 55 SsaDumper sd = new SsaDumper(bytes, out, filePath, args); local 56 sd.dump();
|
/external/chromium_org/remoting/host/ |
ipc_util_win.cc | 42 "O:%1$sG:%1$sD:(A;;GA;;;%1$s)", WideToUTF8(user_sid).c_str()); 95 ScopedSd sd = ConvertSddlToSd(pipe_security_descriptor); local 96 if (!sd) { 104 security_attributes.lpSecurityDescriptor = sd.get();
|
/external/clang/test/Parser/ |
cxx11-user-defined-literals.cpp | 59 S<u"d"_id> sd; variable
|
/external/chromium_org/net/cert/ |
x509_util_nss_unittest.cc | 39 CERTSignedData sd; local 40 memset(&sd, 0, sizeof(sd)); 47 SECStatus rv = SEC_ASN1DecodeItem(arena.get(), &sd, 57 &sd.signatureAlgorithm, 65 sd.signature.data, 66 sd.signature.len / 8, // Signature is a BIT STRING, convert to bytes. 71 verifier.VerifyUpdate(sd.data.data, 72 sd.data.len);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r300_fragprog_swizzle.c | 75 const struct swizzle_data* sd = &native_swizzles[i]; local 80 if (swz != GET_SWZ(sd->hash, comp)) 84 return sd; 109 const struct swizzle_data* sd; local 140 sd = lookup_native_swizzle(reg.Swizzle); 141 if (!sd || (reg.File == RC_FILE_PRESUB && sd->srcp_stride == 0)) 160 const struct swizzle_data *sd = &native_swizzles[i]; local 170 if (swz == GET_SWZ(sd->hash, comp)) { 208 const struct swizzle_data* sd = lookup_native_swizzle(swizzle) local [all...] |
/external/eigen/test/ |
mixingtypes.cpp | 48 double sd = internal::random<double>(); local 62 VERIFY_IS_APPROX(sd * vcd, complex<double>(sd) * vcd); 96 VERIFY_IS_APPROX(sd*md*mcd, (sd*md).template cast<CD>().eval()*mcd); 97 VERIFY_IS_APPROX(sd*mcd*md, sd*mcd*md.template cast<CD>()); 116 VERIFY_IS_APPROX(sd*md*vcd, (sd*md).template cast<CD>().eval()*vcd); 118 VERIFY_IS_APPROX(sd*mcd*vd, sd*mcd*vd.template cast<CD>().eval()) [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r300_fragprog_swizzle.c | 75 const struct swizzle_data* sd = &native_swizzles[i]; local 80 if (swz != GET_SWZ(sd->hash, comp)) 84 return sd; 109 const struct swizzle_data* sd; local 140 sd = lookup_native_swizzle(reg.Swizzle); 141 if (!sd || (reg.File == RC_FILE_PRESUB && sd->srcp_stride == 0)) 160 const struct swizzle_data *sd = &native_swizzles[i]; local 170 if (swz == GET_SWZ(sd->hash, comp)) { 208 const struct swizzle_data* sd = lookup_native_swizzle(swizzle) local [all...] |
/frameworks/compile/mclinker/lib/LD/ |
BranchIsland.cpp | 120 SectionData* sd = m_Entry.getParent(); local 128 align_frag->setParent(sd); 129 sd->getFragmentList().insert(end(), align_frag); 134 pStub.setParent(sd); 135 sd->getFragmentList().insert(end(), &pStub);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/ |
unique.pass.cpp | 50 const unsigned sd = sizeof(id)/sizeof(id[0]); local 51 r = std::unique(Iter(id), Iter(id+sd)); 124 const unsigned sd = sizeof(id)/sizeof(id[0]); local 125 r = std::unique(Iter(id), Iter(id+sd));
|
unique_copy.pass.cpp | 52 const unsigned sd = sizeof(id)/sizeof(id[0]); local 53 int jd[sd] = {-1}; 54 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd));
|
unique_pred.pass.cpp | 66 const unsigned sd = sizeof(id)/sizeof(id[0]); local 68 r = std::unique(Iter(id), Iter(id+sd), count_equal()); 72 assert(count_equal::count == sd-1); 156 const unsigned sd = sizeof(id)/sizeof(id[0]); local 158 r = std::unique(Iter(id), Iter(id+sd), count_equal()); 162 assert(count_equal::count == sd-1);
|