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

1 2 3 4 5 6 7 8 91011>>

  /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);
  /libcore/ojluni/src/main/java/java/io/
InputStreamReader.java 64 private final StreamDecoder sd; field in class:InputStreamReader
74 sd = StreamDecoder.forInputStreamReader(in, this, (String)null); // ## check lock object
100 sd = StreamDecoder.forInputStreamReader(in, this, charsetName);
116 sd = StreamDecoder.forInputStreamReader(in, this, cs);
132 sd = StreamDecoder.forInputStreamReader(in, this, dec);
156 return sd.getEncoding();
168 return sd.read();
184 return sd.read(cbuf, offset, length);
195 return sd.ready();
199 sd.close()
    [all...]
  /external/libcxx/test/std/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/std/algorithms/alg.sorting/alg.set.operations/includes/
includes.pass.cpp 34 const unsigned sd = sizeof(id)/sizeof(id[0]); ((void)sd); local
includes_comp.pass.cpp 35 const unsigned sd = sizeof(id)/sizeof(id[0]); ((void)sd); local
  /external/ltp/utils/sctp/func_tests/
test_1_to_1_rtoinfo.c 64 int sd, ret; local
69 sd = test_socket (PF_INET, SOCK_STREAM, IPPROTO_SCTP);
74 ret = getsockopt(sd, IPPROTO_SCTP, SCTP_RTOINFO, &grtoinfo, &len);
87 ret = setsockopt(sd, IPPROTO_SCTP, SCTP_RTOINFO, &srtoinfo,
96 ret = getsockopt(sd, IPPROTO_SCTP, SCTP_RTOINFO, &grtoinfo, &len);
111 close(sd);
  /external/syslinux/core/fs/lib/
searchconfig.c 22 const char *sd, **sdp; local
25 for (sdp = search_directories; (sd = *sdp); sdp++) {
29 sd, (*sd && sd[strlen(sd)-1] == '/') ? "" : "/",
35 chdir(sd);
  /external/vboot_reference/firmware/2lib/
2nvstorage.c 50 struct vb2_shared_data *sd = vb2_get_sd(ctx); local
65 sd->status |= VB2_SD_STATUS_NV_REINIT;
69 sd->status |= VB2_SD_STATUS_NV_INIT;
2secdata.c 44 struct vb2_shared_data *sd = vb2_get_sd(ctx); local
52 sd->status |= VB2_SD_STATUS_SECDATA_INIT;
57 &sd->fw_version_secdata);
  /prebuilts/ndk/r11/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));
  /prebuilts/ndk/r11/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
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.set.operations/includes/
includes.pass.cpp 34 const unsigned sd = sizeof(id)/sizeof(id[0]); ((void)sd); local
includes_comp.pass.cpp 35 const unsigned sd = sizeof(id)/sizeof(id[0]); ((void)sd); local
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/
rotate.pass.cpp 78 const int sd = static_cast<int>(sizeof(id)/sizeof(id[0])); local
79 r = std::rotate(Iter(id), Iter(id), Iter(id+sd));
80 assert(base(r) == id+sd);
85 r = std::rotate(Iter(id), Iter(id+1), Iter(id+sd));
91 r = std::rotate(Iter(id), Iter(id+2), Iter(id+sd));
97 r = std::rotate(Iter(id), Iter(id+3), Iter(id+sd));
103 r = std::rotate(Iter(id), Iter(id+sd), Iter(id+sd));
278 const int sd = static_cast<int>(sizeof(id)/sizeof(id[0])); local
279 for (int i = 0; i < sd; ++i
    [all...]
  /external/libmicrohttpd/src/testcurl/https/
test_https_time_out.c 50 MHD_socket sd; local
53 sd = socket (AF_INET, SOCK_STREAM, 0);
54 if (sd == -1)
65 gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) (intptr_t) sd);
67 ret = connect (sd, &sa, sizeof (struct sockaddr_in));
72 close (sd);
80 close (sd);
88 if (send (sd, "", 1, 0) == 0)
91 close (sd);
95 close (sd);
    [all...]

Completed in 1258 milliseconds

1 2 3 4 5 6 7 8 91011>>