Searched defs:nd (Results 1 - 25 of 26) sorted by relevance

12

/external/fio/engines/
H A Dnull.c28 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
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...]
H A Dnet.c376 struct netio_data *nd = td->io_ops->data; local
378 return splice_io_u(io_u->file->fd, nd->pipes[1], io_u->xfer_buflen);
387 struct netio_data *nd = td->io_ops->data; local
389 return splice_io_u(nd->pipes[0], io_u->file->fd, len);
425 struct netio_data *nd = td->io_ops->data; local
427 return vmsplice_io_u(io_u, nd->pipes[0], len);
435 struct netio_data *nd = td->io_ops->data; local
437 return vmsplice_io_u(io_u, nd->pipes[1], io_u->xfer_buflen);
483 static void store_udp_seq(struct netio_data *nd, struct io_u *io_u) argument
493 us->seq = cpu_to_le64(nd
496 verify_udp_seq(struct thread_data *td, struct netio_data *nd, struct io_u *io_u) argument
526 struct netio_data *nd = td->io_ops->data; local
589 struct netio_data *nd = td->io_ops->data; local
647 struct netio_data *nd = td->io_ops->data; local
713 struct netio_data *nd = td->io_ops->data; local
828 struct netio_data *nd = td->io_ops->data; local
880 struct netio_data *nd = td->io_ops->data; local
915 struct netio_data *nd = td->io_ops->data; local
949 struct netio_data *nd = td->io_ops->data; local
1051 struct netio_data *nd = td->io_ops->data; local
1101 struct netio_data *nd = td->io_ops->data; local
1122 struct netio_data *nd = td->io_ops->data; local
1155 struct netio_data *nd = td->io_ops->data; local
1271 struct netio_data *nd = td->io_ops->data; local
1346 struct netio_data *nd = td->io_ops->data; local
1362 struct netio_data *nd; local
1390 struct netio_data *nd; local
[all...]
/external/clang/test/SemaCXX/
H A Dcopy-assignment.cpp64 D d, nd; local
91 nd = d;
92 nd += d;
93 nd += constD;
H A Dcxx0x-deleted-default-ctor.cpp69 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/squashfs-tools/kernel/fs/squashfs/
H A Dnamei.c136 struct nameidata *nd)
135 squashfs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) argument
/external/dtc/
H A Ddata.c41 struct data nd; local
47 nd = d;
54 nd.val = xrealloc(d.val, newsize);
56 return nd;
/external/freetype/src/gzip/
H A Dinftrees.c327 local int inflate_trees_dynamic( /* nl, nd, c, bl, bd, tl, td, hp, z) */ argument
329 uInt nd, /* number of distance codes */
363 r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v);
/external/iw/
H A Dwowlan.c186 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_DELA
[all...]
/external/ltp/testcases/kernel/fs/scsi/ltpfs/
H A DLtpfsCmds.c65 int path_lookup(const char *name, unsigned int flags, struct nameidata *nd);
66 //static int __emul_lookup_dentry(const char *name, struct nameidata *nd);
67 void path_release(struct nameidata *nd);
263 struct nameidata nd; local
269 error = path_lookup(path, LOOKUP_FOLLOW, &nd);
273 inode = nd.dentry->d_inode;
278 if (nd.mnt->mnt_flags & MNT_NODEV)
286 path_release(&nd);
/external/syslinux/memdisk/
H A Dinflate.c702 unsigned nd; /* number of distance codes */ local
722 nd = 1 + ((unsigned)b & 0x1f); /* number of distance codes */
728 if (nl > 288 || nd > 32)
730 if (nl > 286 || nd > 30)
758 n = nl + nd;
823 if ((i = huft_build(ll + nl, nd, 0, cpdist, cpdext, &td, &bd)) != 0) {
/external/ipsec-tools/src/racoon/
H A Disakmp_inf.c137 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
136 struct isakmp_gen *nd; local
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/Heuristics/
H A DBriggs.h138 NodeData &nd = getHeuristicNodeData(nItr); local
140 nd.isHeuristic = true;
141 if (nd.isAllocable) {
142 nd.rnaItr = rnAllocableList.insert(rnAllocableList.end(), nItr);
144 nd.rnuItr = rnUnallocableList.insert(rnUnallocableList.end(), nItr);
261 NodeData &nd = getHeuristicNodeData(nItr); local
265 if (!nd.isHeuristic)
273 bool ndWasAllocable = nd.isAllocable;
279 nd.isHeuristic = false;
282 rnAllocableList.erase(nd
361 NodeData &nd = getHeuristicNodeData(nItr); local
388 NodeData &nd = getHeuristicNodeData(nItr); local
407 NodeData &nd = getHeuristicNodeData(nItr); local
413 NodeData &nd = getHeuristicNodeData(nItr); local
[all...]
/external/fsck_msdos/
H A Ddir.c280 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;
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
H A DHeuristicSolver.h238 NodeData &nd = getSolverNodeData(xnItr); local
239 assert(nd.getSolverDegree() == 1 &&
242 Graph::EdgeItr eItr = *nd.solverEdgesBegin();
276 assert(nd.getSolverDegree() == 0 &&
290 NodeData &nd = getSolverNodeData(xnItr); local
293 SolverEdgeItr aeItr = nd.solverEdgesBegin();
/external/valgrind/coregrind/
H A Dm_wordfm.c139 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, argument
510 vg_assert(nd != NULL);
514 nyu->child[0] = nd->child[0];
515 nyu->child[1] = nd->child[1];
516 nyu->balance = nd
581 avl_free( AvlNode* nd, void(*kFin)(UWord), void(*vFin)(UWord), void(*dealloc)(void*) ) argument
927 AvlNode* nd; local
941 AvlNode* nd = bag->fm->root; local
[all...]
/external/dhcpcd-6.8.2/
H A Dif-bsd.c1453 struct in6_ndireq nd; local
1456 memset(&nd, 0, sizeof(nd));
1457 strlcpy(nd.ifname, ifp->name, sizeof(nd.ifname));
1458 if (ioctl(s, SIOCGIFINFO_IN6, &nd) == -1)
1461 return nd.ndi.flags & flag ? 1 : 0;
1463 oflags = nd.ndi.flags;
1465 nd.ndi.flags &= ~flag;
1467 nd
[all...]
H A Dipv6nd.c232 struct nd_opt_hdr *nd; local
245 nd = (struct nd_opt_hdr *)(state->rs + sizeof(*rs));
246 nd->nd_opt_type = ND_OPT_SOURCE_LINKADDR;
247 nd->nd_opt_len = (uint8_t)((ROUNDUP8(ifp->hwlen + 2)) >> 3);
248 memcpy(nd + 1, ifp->hwaddr, ifp->hwlen);
/external/ltp/testcases/kernel/mem/lib/
H A Dmem.c201 /* Using the 2nd,3rd node */
694 static void gather_node_cpus(char *cpus, long nd) argument
707 PATH_SYS_SYSTEM "/node/node%ld/cpu%d", nd, i);
783 void write_cpusets(long nd) argument
788 snprintf(buf, BUFSIZ, "%ld", nd);
791 gather_node_cpus(cpus, nd);
793 * If the 'nd' node doesn't contain any CPUs,
801 "using only CPU0", nd);
891 tst_brkm(TBROK | TERRNO, cleanup_fn, "2nd get_allowed_nodes");
/external/blktrace/btt/
H A Doutput.c165 unsigned long long nq, nd, blkmin, blkmax, total; member in struct:__anon615
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/opencv/cv/src/
H A Dcvstereogc.cpp490 int mind = state->minDisparity, nd = state->numberOfDisparities, maxd = mind + nd; local
491 int k = MIN(MAX((nd + 2)/4, 3), nd);
/external/valgrind/cachegrind/
H A Dcg_merge.c1052 static Word size_avl_nonNull ( AvlNode* nd )
1054 return 1 + (nd->left ? size_avl_nonNull(nd->left) : 0)
1055 + (nd->right ? size_avl_nonNull(nd->right) : 0);
1344 AvlNode* avl_dopy ( AvlNode* nd, argument
1350 if (! nd)
1355 nyu->left = nd->left;
1356 nyu->right = nd->right;
1357 nyu->balance = nd
1420 avl_free( AvlNode* nd, void(*kFin)(Word), void(*vFin)(Word), void(*dealloc)(void*) ) argument
[all...]
/external/valgrind/exp-sgcheck/
H A Dsg_main.c485 StackTreeNode* nd = (StackTreeNode*)keyW; local
486 VG_(printf)(" [%#lx,+%lu) descr=%p %s %lu\n", nd->addr, nd->szB,
487 nd->descr, nd->descr->name, nd->descr->szB);
578 StackTreeNode* nd = find_StackTreeNode(sitree, addr); local
581 tl_assert(nd);
582 b = VG_(delFromFM)( sitree, &oldK, &oldV, (UWord)nd );
586 tl_assert(nd
593 StackTreeNode* nd = (StackTreeNode*)keyW; local
642 GlobalTreeNode* nd; local
689 GlobalTreeNode *nyu, *nd; local
766 GlobalTreeNode key, *nd; local
829 StackTreeNode* nd; member in struct:__anon23303::__anon23304::__anon23308
834 GlobalTreeNode* nd; member in struct:__anon23303::__anon23304::__anon23309
1144 GlobalTreeNode* nd = (GlobalTreeNode*)keyW; local
1570 { StackTreeNode* nd = find_StackTreeNode( siTrees[tid], ea ); local
1586 { GlobalTreeNode* nd = find_GlobalTreeNode(giTree, ea); local
[all...]
/external/valgrind/VEX/priv/
H A Dguest_mips_toIR.c1380 if (link) { /* LR (GPR31) = addr of the 2nd instr after branch instr */
12034 UInt opcode, cins, rs, rt, rd, sa, ft, fs, fd, fmt, tf, nd, function, local
12188 nd = get_nd(cins);
12271 if (tf == 1 && nd == 0) {
12277 } else if (tf == 0 && nd == 0) {
12283 } else if (nd == 1 && tf == 0) {
12288 } else if (nd == 1 && tf == 1) {
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp1496 NamedDecl *nd = cast<NamedDecl>(D); local
1511 << nd;
2918 // checks for the 2nd argument
4849 // e) The 2nd argument (if any) must be an unsigned integer.
/external/libxml2/
H A Dxmlregexp.c219 int nd; member in struct:_xmlRegTrans
1125 if (trans->nd != 0) {
1126 if (trans->nd == 2)
1421 state->trans[state->nbTrans].nd = 0;
2623 /* t1->nd = 1; */
2632 t1->nd = 1;
2681 /* t1->nd = 1; */
2740 t1->nd = 1;
2741 t2->nd = 1;
2757 t1->nd
[all...]

Completed in 654 milliseconds

12