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

1 2

  /art/test/474-fp-sub-neg/src/
Main.java 39 double nd = -0; local
44 nd -= dc;
45 nd = -nd;
49 System.out.println(nd);
52 System.out.println(-d - (-nd));
53 System.out.println(-d + (-nd));
  /hardware/bsp/intel/peripheral/libupm/src/grovespeaker/
grovespeaker.cxx 94 NoteData nd = it->second; local
99 delayTime = nd.delayTimeLowSharp;
101 delayTime = nd.delayTimeMedSharp;
103 delayTime = nd.delayTimeHighSharp;
114 delayTime = nd.delayTimeLow;
116 delayTime = nd.delayTimeMed;
118 delayTime = nd.delayTimeHigh;
  /external/fio/engines/
null.c 28 struct null_data *nd = (struct null_data *) td->io_ops->data; local
30 return nd->io_us[event];
37 struct null_data *nd = (struct null_data *) td->io_ops->data; local
41 ret = nd->events;
42 nd->events = 0;
50 struct null_data *nd = (struct null_data *) td->io_ops->data; local
52 if (!nd->events) {
54 io_u_mark_submit(td, nd->queued);
56 nd->events = nd->queued
65 struct null_data *nd = (struct null_data *) td->io_ops->data; local
86 struct null_data *nd = (struct null_data *) td->io_ops->data; local
97 struct null_data *nd = (struct null_data *) malloc(sizeof(*nd)); local
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapBmessageBuilder.java 149 NameData nd = vcard.getNameData(); local
152 sb.append(nd.getFamily()).append(";");
153 sb.append(nd.getGiven() == null ? "" : nd.getGiven()).append(";");
154 sb.append(nd.getMiddle() == null ? "" : nd.getMiddle()).append(";");
155 sb.append(nd.getPrefix() == null ? "" : nd.getPrefix()).append(";");
156 sb.append(nd.getSuffix() == null ? "" : nd.getSuffix())
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
AnqpCacheTest.java 67 NetworkDetail nd = new NetworkDetail(bssid, ie, local
69 mScanDetails[i] = new ScanDetail(nd, wifiSsid,
168 NetworkDetail nd = data.getNetwork(); local
170 assertEquals(scanDetail.getBSSIDString(), nd.getBSSIDString());
199 NetworkDetail nd = data.getNetwork(); local
201 assertEquals(scanDetail.getBSSIDString(), nd.getBSSIDString());
ScanResults.java 118 NetworkDetail nd = new NetworkDetail(bssid, ie, anqpLines, freq); local
119 ScanDetail detail = new ScanDetail(nd, WifiSsid.createFromAsciiEncoded(ssid),
  /external/clang/test/SemaCXX/
copy-assignment.cpp 64 D d, nd; local
91 nd = d;
92 nd += d;
93 nd += constD;
cxx0x-deleted-default-ctor.cpp 69 no_default nd; // expected-note {{field 'nd' has a deleted default constructor}} member in struct:bad_field_default
77 no_dtor nd; // expected-note {{field 'nd' has a deleted destructor}} member in struct:bad_field_dtor
111 no_default nd; // expected-note {{because field 'nd' has a deleted default constructor}} member in struct:defaulted_delete
117 no_default nd; // expected-note {{because field 'nd' has a deleted default constructor}} member in struct:late_delete
  /external/opencv3/3rdparty/openexr/Imath/
ImathLineAlgo.h 169 // The intersection point is at line.pos + (d/nd) * line.dir.
173 T nd = normal ^ line.dir; local
175 if (abs (nd) > 1 || abs (d) < limits<T>::max() * abs (nd))
176 pt = line (d / nd);
  /system/core/libpixelflinger/
fixed.cpp 180 int nd = gglClz(d) - gglClz(n); local
181 i += nd + 1;
182 if (nd > 0) d <<= nd; local
183 else n <<= -nd;
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
strtod.c 94 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local
208 for(nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++)
209 if (nd < 9)
211 else if (nd < 16)
213 nd0 = nd;
226 if (!nd) {
243 if (nd++ < 9)
245 else if (nd <= DBL_DIG + 1)
247 if (nd++ < 9
    [all...]
strtodg.c 348 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign; local
430 for(decpt = nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++)
431 if (nd < 9)
433 else if (nd < 16)
435 nd0 = nd;
448 if (!nd) {
465 if (nd++ < 9)
467 else if (nd <= DBL_DIG + 1)
469 if (nd++ < 9
    [all...]
  /external/iw/
wowlan.c 186 struct nlattr *nd; local
189 nd = nla_nest_start(msg, NL80211_WOWLAN_TRIG_NET_DETECT);
190 if (!nd)
195 nla_nest_end(msg, nd);
387 *nd[NUM_NL80211_ATTR], *tb[NUM_NL80211_ATTR]; local
391 nla_parse(nd, NUM_NL80211_ATTR,
395 if (nd[NL80211_ATTR_SCHED_SCAN_INTERVAL])
397 nla_get_u32(nd[NL80211_ATTR_SCHED_SCAN_INTERVAL]));
399 if (nd[NL80211_ATTR_SCHED_SCAN_DELAY])
401 nla_get_u32(nd[NL80211_ATTR_SCHED_SCAN_DELAY]))
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/protocol/gopher/
GopherClient.java 230 char nd[] = new char[dp + 10]; local
231 System.arraycopy(d, 0, nd, 0, dp);
232 d = nd;
243 char nd[] = new char[dp + 10]; local
244 System.arraycopy(d, 0, nd, 0, dp);
245 d = nd;
  /libcore/ojluni/src/main/java/sun/nio/ch/
SinkChannelImpl.java 40 private static NativeDispatcher nd; field in class:SinkChannelImpl
88 nd.preClose(fd);
106 nd.close(fd);
168 n = IOUtil.write(fd, src, -1, nd);
191 n = IOUtil.write(fd, srcs, nd);
211 nd = new FileDispatcherImpl();
SourceChannelImpl.java 41 private static NativeDispatcher nd; field in class:SourceChannelImpl
89 nd.preClose(fd);
107 nd.close(fd);
172 n = IOUtil.read(fd, dst, -1, nd);
203 n = IOUtil.read(fd, dsts, nd);
215 nd = new FileDispatcherImpl();
FileChannelImpl.java 56 private final FileDispatcher nd; field in class:FileChannelImpl
88 this.nd = new FileDispatcherImpl(append);
121 nd.release(fd, fl.position(), fl.size());
139 nd.close(fd);
158 n = IOUtil.read(fd, dst, -1, nd);
188 n = IOUtil.read(fd, dsts, offset, length, nd);
214 n = IOUtil.write(fd, src, -1, nd);
244 n = IOUtil.write(fd, srcs, offset, length, nd);
273 p = (append) ? nd.size(fd) : position0(fd, -1);
320 s = nd.size(fd)
778 private static final NativeDispatcher nd = new FileDispatcherImpl(); field in class:FileChannelImpl.Unmapper
    [all...]
ServerSocketChannelImpl.java 47 private static NativeDispatcher nd; field in class:ServerSocketChannelImpl
280 nd.preClose(fd);
298 nd.close(fd);
398 nd = new SocketDispatcher();
SocketChannelImpl.java 51 private static NativeDispatcher nd; field in class:SocketChannelImpl
339 // - implCloseSelectableChannel() invokes nd.preClose()
345 // - implCloseSelectableChannel() invokes nd.preClose() after
351 // - implCloseSelectableChannel() invokes nd.preClose() after
364 // invokes nd.preClose(), signals reader/writer thred and quickly
365 // moves on to nd.close() in kill(), which does a real close.
380 // nd.preClose().
382 n = IOUtil.read(fd, buf, -1, nd);
452 n = IOUtil.read(fd, dsts, offset, length, nd);
490 n = IOUtil.write(fd, buf, -1, nd);
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_inf.c 137 struct isakmp_gen *nd;
196 if (msg->l < sizeof(*isakmp) + ntohs(gen->len) + sizeof(*nd)) {
204 nd = (struct isakmp_gen *) ((caddr_t) gen + ntohs(gen->len));
206 /* nd length check */
207 if (ntohs(nd->len) > msg->l - (sizeof(struct isakmp) +
214 if (ntohs(nd->len) < sizeof(*nd)) {
220 payload = vmalloc(ntohs(nd->len));
227 memcpy(payload->v, (caddr_t) nd, ntohs(nd->len))
136 struct isakmp_gen *nd; local
    [all...]
  /external/valgrind/coregrind/
m_wordfm.c 139 static UWord size_avl_nonNull ( const AvlNode* nd )
141 return 1 + (nd->child[0] ? size_avl_nonNull(nd->child[0]) : 0)
142 + (nd->child[1] ? size_avl_nonNull(nd->child[1]) : 0);
502 AvlNode* avl_dopy ( const AvlNode* nd,
510 vg_assert(nd != NULL);
514 nyu->child[0] = nd->child[0];
515 nyu->child[1] = nd->child[1];
516 nyu->balance = nd->balance
927 AvlNode* nd; local
941 AvlNode* nd = bag->fm->root; local
    [all...]
  /external/fsck_msdos/
dir.c 280 struct dosDirEntry *d, *nd; local
287 for (d = rootDir; d; d = nd) {
288 if ((nd = d->child) != NULL) {
292 if (!(nd = d->next))
293 nd = d->parent;
  /toolchain/binutils/binutils-2.25/binutils/
windmc.c 734 char *nd; local
746 nd = convert_unicode_to_ACP (n->lang->sval);
749 filename = xmalloc (strlen (nd) + 4 + 1 + strlen (mcset_mc_basename) + 1 + strlen (mcset_rc_dir));
753 strcat (filename, nd);
  /external/blktrace/btt/
output.c 165 unsigned long long nq, nd, blkmin, blkmax, total; member in struct:__anon5782
216 merge_data.nd += dip->n_ds;
235 "TOTAL", merge_data.nq, merge_data.nd,
236 (float)merge_data.nq / (float)merge_data.nd,
238 merge_data.total / merge_data.nd,
  /external/dhcpcd-6.8.2/
if-bsd.c 1453 struct in6_ndireq nd; local
    [all...]

Completed in 2343 milliseconds

1 2