HomeSort by relevance Sort by last modified time
    Searched defs:sd (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /external/compiler-rt/lib/builtins/
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 33 int sd = N - __clzti2(a); /* number of significant digits */ local
34 int e = sd - 1; /* exponent */
35 if (sd > DBL_MANT_DIG)
45 switch (sd)
53 a = (a >> (sd - (DBL_MANT_DIG+2))) |
54 ((a & ((tu_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0);
70 a <<= (DBL_MANT_DIG - sd);
floatuntisf.c 33 int sd = N - __clzti2(a); /* number of significant digits */ local
34 int e = sd - 1; /* exponent */
35 if (sd > FLT_MANT_DIG)
45 switch (sd)
53 a = (a >> (sd - (FLT_MANT_DIG+2))) |
54 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
70 a <<= (FLT_MANT_DIG - sd);
floatuntixf.c 35 int sd = N - __clzti2(a); /* number of significant digits */ local
36 int e = sd - 1; /* exponent */
37 if (sd > LDBL_MANT_DIG)
47 switch (sd)
55 a = (a >> (sd - (LDBL_MANT_DIG+2))) |
56 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0);
72 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 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 = ((tu_int)a >> (sd - (DBL_MANT_DIG+2))) |
56 ((a & ((tu_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0);
72 a <<= (DBL_MANT_DIG - sd);
floattisf.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 = ((tu_int)a >> (sd - (FLT_MANT_DIG+2))) |
56 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
72 a <<= (FLT_MANT_DIG - sd);
floattixf.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 = ((tu_int)a >> (sd - (LDBL_MANT_DIG+2))) |
58 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG+2) - sd))) != 0);
74 a <<= (LDBL_MANT_DIG - sd);
  /frameworks/compile/mclinker/tools/mcld/lib/
SearchPathOptions.cpp 88 llvm::cl::list<std::string>::iterator sd; local
90 for (sd = m_SearchDirList.begin(); sd != sdEnd; ++sd) {
91 if (!pScript.directories().insert(*sd)) {
94 << *sd
  /external/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);
  /external/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
  /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...]
  /external/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...]
  /frameworks/compile/mclinker/lib/LD/
BranchIslandFactory.cpp 46 SectionData& sd = *text->getSectionData(); local
48 for (SectionData::iterator it = sd.begin(), ie = sd.end(); it != ie; ++it) {
60 if (getIslands(sd.back()).first == NULL)
61 produce(sd.back());
  /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 43 "O:%1$sG:%1$sD:(A;;GA;;;%1$s)", base::WideToUTF8(user_sid).c_str());
95 ScopedSd sd = ConvertSddlToSd(pipe_security_descriptor); local
96 if (!sd) {
104 security_attributes.lpSecurityDescriptor = sd.get();
  /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...]

Completed in 246 milliseconds

1 2 3 4 5 6 7