Searched refs:nd (Results 1 - 25 of 188) sorted by path

12345678

/freebsd-current/bin/ed/
H A Dre.c82 char *nd; local
85 for (nd = ibufp; *nd != delimiter && *nd != '\n'; nd++)
86 switch (*nd) {
90 if ((nd = parse_char_class(nd + 1)) == NULL) {
96 if (*++nd == '\n') {
102 len = nd
[all...]
/freebsd-current/bin/sh/
H A Dparser.c1550 * (don't 2nd guess - no error)
/freebsd-current/contrib/arm-optimized-routines/string/arm/
H A Dmemchr.S140 moveq r5, r6 @ the end is in the 2nd word
141 subeq r0,r0,#3 @ Points to 2nd byte of 2nd word
142 subne r0,r0,#7 @ or 2nd byte of 1st word
148 tst r5, # CHARTSTMASK(1) @ 2nd character
151 tsteq r5, # (3<<15) @ 2nd & 3rd character
/freebsd-current/contrib/bmake/mk/
H A Dmeta.stage.mk357 # anything in the 2nd list but not the first is stale - remove it.
/freebsd-current/contrib/bsnmp/tests/
H A Dcatch.hpp7703 double nd = n * d;
7704 double k0 = -n * nd;
7705 double k1 = sb2 - n * sg2 + nd;
/freebsd-current/contrib/cortex-strings/src/arm/
H A Dmemchr.S137 moveq r5, r6 @ the end is in the 2nd word
138 subeq r0,r0,#3 @ Points to 2nd byte of 2nd word
139 subne r0,r0,#7 @ or 2nd byte of 1st word
145 tst r5, # CHARTSTMASK(1) @ 2nd character
148 tsteq r5, # (3<<15) @ 2nd & 3rd character
/freebsd-current/contrib/elftoolchain/readelf/
H A Dreadelf.c3811 struct note_desc *nd; local
3863 for (nd = xen_notes; nd->description != NULL; nd++) {
3864 if (nd->type == type) {
3865 if (nd->fp(nd->description, buf, sz))
/freebsd-current/contrib/file/src/
H A Dcdf.c705 size_t ss = CDF_SEC_SIZE(h), ns, nd; local
713 nd = ss / CDF_DIRECTORY_SIZE;
715 dir->dir_len = ns * nd;
736 for (j = 0; j < nd; j++) {
737 cdf_unpack_dir(&dir->dir_tab[i * nd + j],
/freebsd-current/contrib/flex/src/
H A Dsym.c192 char *ndlookup (const char *nd) argument
194 return findsym (nd, ndtbl, NAME_TABLE_HASH_SIZE)->str_val;
/freebsd-current/contrib/gdtoa/
H A Dsmisc.c37 (s, nd0, nd, y9, dplen) CONST char *s; int dplen, nd0, nd; ULong y9;
39 (CONST char *s, int nd0, int nd, ULong y9, int dplen)
46 x = (nd + 8) / 9;
67 for(; i < nd; i++)
H A Dstrtod.c96 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
[all...]
H A Dstrtodg.c327 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign; local
407 for(decpt = nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++)
408 if (nd < 9)
410 else if (nd < 16)
412 nd0 = nd;
425 if (!nd) {
442 if (nd++ < 9)
444 else if (nd <= DBL_DIG + 1)
446 if (nd
[all...]
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_set_format_mtree.c362 int i, fn, nd, pd; local
367 nd = 0;
370 nd = mtree->depth?4:0;
374 nd = pd = 0;
383 for (i = 0; i < nd + pd; i++)
386 if (nd + (r -s) > INDENTNAMELEN) {
391 for (i = (int)(r -s + nd);
413 for (i = 0; i < nd + pd; i++)
/freebsd-current/contrib/libpcap/msdos/
H A Dpkt_rx0.asm47 secondCount dw 0 ; # of bytes on 2nd call
108 ;; to ES:DI (= DS:SI on 2nd call) by the packet driver
117 ; 2nd time (AX=1) the packet has been copied to this location (DS:SI)
H A Dpkt_rx1.s17 .secondCount resw 1 ; # of bytes on 2nd call
73 ; 2nd time (AX=1) the packet has been copied to this location (DS:SI)
/freebsd-current/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dnetbsd_syscall_hooks.h489 #define __sanitizer_syscall_pre_compat_50_select(nd, in, ou, ex, tv) \
491 (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex), \
493 #define __sanitizer_syscall_post_compat_50_select(res, nd, in, ou, ex, tv) \
495 res, (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex), \
2019 #define __sanitizer_syscall_pre_compat_50_pselect(nd, in, ou, ex, ts, mask) \
2021 (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex), \
2023 #define __sanitizer_syscall_post_compat_50_pselect(res, nd, in, ou, ex, ts, \
2026 res, (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex), \
2287 #define __sanitizer_syscall_pre___select50(nd, in, ou, ex, tv) \
2288 __sanitizer_syscall_pre_impl___select50((long long)(nd), (lon
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangDeclVendor.cpp27 clang::NamedDecl *nd = llvm::cast<clang::NamedDecl>(d); local
28 decls.push_back(nd);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp8931 clang::NamedDecl *nd = local
8933 if (nd != nullptr)
8934 return ConstString(nd->getDeclName().getAsString());
8941 clang::NamedDecl *nd = local
8943 if (nd != nullptr && !llvm::isa<clang::ObjCMethodDecl>(nd)) {
8945 if (mc && mc->shouldMangleCXXName(nd)) {
8948 if (llvm::isa<clang::CXXConstructorDecl>(nd)) {
8950 clang::GlobalDecl(llvm::dyn_cast<clang::CXXConstructorDecl>(nd),
8953 } else if (llvm::isa<clang::CXXDestructorDecl>(nd)) {
9228 clang::NamedDecl *nd = llvm::dyn_cast<clang::NamedDecl>(target); local
[all...]
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dz_Windows_NT-586_asm.asm1280 $_kmp_invoke_pass_parms: ; put 1st & 2nd parms to pkfn in registers
1281 lea rdx, QWORD PTR $_tid[rbp] ; rdx <= &tid (2nd parm to pkfn)
/freebsd-current/contrib/lua/src/
H A Dltable.c189 l_sinline Node *mainpositionfromnode (const Table *t, Node *nd) { argument
191 getnodekey(cast(lua_State *, NULL), &key, nd); local
/freebsd-current/contrib/netbsd-tests/lib/libppath/
H A Dt_ppath.c433 prop_object_t nd = NULL, ond; local
482 rc = ppath_copyset_bool(d, &nd, p, false);
485 rc = ppath_get_object(nd, p3, &r);
488 ond = nd;
490 rc = ppath_copyset_string(d, &nd, p2, "Martha Doe");
493 ATF_CHECK_EQ(nd, ond);
495 rc = ppath_get_object(nd, p3, &or);
501 rc = ppath_get_bool(nd, p, &v);
506 rc = ppath_get_string(nd, p2, &s);
519 if (dictionary_equals(od, nd)) {
572 prop_object_t nd = NULL, ond; local
703 prop_object_t nd = NULL; local
797 prop_object_t nd = NULL; local
[all...]
/freebsd-current/contrib/ntp/libntp/
H A Dntp_calgps.c286 TcNtpDatum * nd
292 nd->days + DAY_NTP_STARTS + ntpcal_daysec_to_date(
293 cd, nd->secs));
331 TcNtpDatum * nd
336 retv.l_uf = nd->frac;
337 retv.l_ui = nd->days * (uint32_t)SECSPERDAY
338 + nd->secs;
484 TNtpDatum nd; local
487 nd = gpsntp_from_gpscal_ex(wd, FALSE);
488 gpsntp_to_calendar(cd, &nd);
[all...]
/freebsd-current/contrib/ntp/ntpd/
H A Dntp_refclock.c464 int nd
469 if (nd <= 0)
477 if ((u_int)nd < na)
478 nd = na;
479 pp->codeproc = (pp->codeproc + nd) % MAXSTAGE;
484 if ((u_int)nd > na)
485 nd = (int)na;
486 pp->codeproc = (pp->codeproc + nd) & (MAXSTAGE - 1);
489 return nd;
/freebsd-current/contrib/ntp/scripts/monitoring/
H A Dntploopwatch129 (/^-E$/ || /^\+[Ee]nd[Tt]ime$/) &&
/freebsd-current/contrib/ntp/sntp/
H A DMakefile.am190 x=`bk -R prs -hr+ -nd:I: ChangeSet` && \

Completed in 383 milliseconds

12345678