HomeSort by: relevance | last modified time | path
    Searched refs:nh (Results 1 - 25 of 123) sorted by relevancy

1 2 3 4 5

  /src/external/gpl2/dtc/dist/tests/
root_node.c 23 const struct fdt_node_header *nh; local
28 nh = fdt_offset_ptr(fdt, 0, sizeof(*nh));
30 if (! nh)
33 if (fdt32_to_cpu(nh->tag) != FDT_BEGIN_NODE)
36 if (strlen(nh->name) != 0)
38 nh->name);
subnode_offset.c 22 const struct fdt_node_header *nh; local
30 nh = fdt_offset_ptr(fdt, offset, sizeof(*nh));
31 verbose_printf("pointer %p\n", nh);
32 if (! nh)
35 tag = fdt32_to_cpu(nh->tag);
39 if (!nodename_eq(nh->name, name))
41 nh->name, name);
path_offset.c 22 const struct fdt_node_header *nh; local
30 nh = fdt_offset_ptr(fdt, offset, sizeof(*nh));
31 verbose_printf("pointer %p\n", nh);
32 if (! nh)
35 tag = fdt32_to_cpu(nh->tag);
39 if (!nodename_eq(nh->name, name))
41 nh->name, name);
  /src/sys/arch/epoc32/windermere/
windermerevar.h 41 #define windermere_bus_space_subregion(t, h, o, s, nh) \
42 bus_space_subregion((t), (h), (o) >> 2, (s), (nh))
  /src/external/lgpl3/gmp/dist/mpn/generic/
sec_pi1_div.c 84 mp_limb_t nh, cy, q1h, q0h, dummy, cnd; variable
117 nh = 0;
123 nh = (nh << GMP_NUMB_BITS/2) + (np[dn] >> GMP_NUMB_BITS/2);
124 umul_ppmm (q1h, dummy, nh, dinv);
125 q1h += nh;
131 nh = np[dn];
132 umul_ppmm (q0h, dummy, nh, dinv);
133 q0h += nh;
137 nh -= mpn_submul_1 (np, dp, dn, q0h)
    [all...]
fib2m.c 95 mp_limb_t nh; local
127 nh = np[sn];
128 count_leading_zeros (ncnt, nh);
134 nh >>= ncnt;
139 nh <<= ncnt;
142 nh |= np[sn] >> ncnt;
148 if (nh > nfirst)
150 nh >>= 1;
154 ASSERT (nh <= nfirst);
156 fn = mpn_fib2_ui (fp, f1p, nh);
    [all...]
hgcd2_jacobi.c 100 mp_limb_t nh, mp_limb_t nl,
105 if ((mp_limb_signed_t) nh < 0)
117 if (nh > dh || (nh == dh && nl >= dl))
119 sub_ddmmss (nh, nl, nh, nl, dh, dl);
130 for (cnt = 0; nh > dh || (nh == dh && nl >= dl); cnt++)
141 if (nh > dh || (nh == dh && nl >= dl)
    [all...]
sqrmod_bnm1.c 297 mp_size_t nh; local
306 nh = (n + 1) >> 1;
308 if (BELOW_THRESHOLD (nh, SQR_FFT_MODF_THRESHOLD))
311 return 2 * mpn_fft_next_size (nh, mpn_fft_best_k (nh, 1));
mulmod_bnm1.c 339 mp_size_t nh; local
348 nh = (n + 1) >> 1;
350 if (BELOW_THRESHOLD (nh, MUL_FFT_MODF_THRESHOLD))
353 return 2 * mpn_fft_next_size (nh, mpn_fft_best_k (nh, 0));
  /src/external/bsd/tcpdump/dist/
print-ip6.c 55 u_int nh; local
65 nh = GET_U_1(ip6->ip6_nxt);
71 switch (nh) {
84 nh = GET_U_1(cp);
94 nh = GET_U_1(cp);
188 u_int nh; local
193 nh = GET_U_1(ip6->ip6_nxt);
194 switch (nh) {
237 uint8_t ph, nh; local
290 nh = GET_U_1(ip6->ip6_nxt)
    [all...]
print-cnfp.c 157 const struct nfhdr_v1 *nh; local
166 nh = (const struct nfhdr_v1 *)cp;
167 ND_TCHECK_SIZE(nh);
169 ver = GET_BE_U_2(nh->version);
170 nrecs = GET_BE_U_4(nh->count);
177 t = GET_BE_U_4(nh->utc_sec);
181 GET_BE_U_4(nh->msys_uptime)/1000,
182 GET_BE_U_4(nh->msys_uptime)%1000,
183 GET_BE_U_4(nh->utc_sec), GET_BE_U_4(nh->utc_nsec))
252 const struct nfhdr_v5 *nh; local
354 const struct nfhdr_v6 *nh; local
    [all...]
print-ip-demux.c 39 uint8_t nh, const u_char *iph)
47 switch (nh) {
55 nh = GET_U_1(bp);
108 tok2str(ipproto_values,"unknown",nh));
118 tok2str(ipproto_values,"unknown",nh));
164 tok2str(ipproto_values,"unknown",nh));
212 tok2str(ipproto_values,"unknown",nh));
222 if (ndo->ndo_nflag==0 && (p_name = netdb_protoname(nh)) != NULL)
225 ND_PRINT(" ip-proto-%u", nh);
print-ip.c 460 uint8_t nh = GET_U_1(ip->ip_p); local
462 if (nh != IPPROTO_TCP && nh != IPPROTO_UDP &&
463 nh != IPPROTO_SCTP && nh != IPPROTO_DCCP) {
479 off & IP_MF, GET_U_1(ip->ip_ttl), nh, bp);
  /src/external/gpl2/mkhybrid/dist/
hash.c 174 struct name_hash * nh; local
178 for(nh = name_hash_table[name_hash(name)]; nh; nh = nh->next)
181 p2 = nh->de->isorec.name;
205 return nh->de;
212 struct name_hash * nh, *prev; local
217 for(nh = name_hash_table[hash]; nh; nh = nh->next)
231 struct name_hash * nh, *nh1; local
    [all...]
  /src/external/lgpl3/gmp/dist/mpz/
urandomm.c 44 mp_limb_t nh; local
55 nh = np[size - 1];
58 pow2 = POW2_P (nh) && (size == 1 || mpn_zero_p (np, size - 1));
60 count_leading_zeros (count, nh);
  /src/games/worm/
worm.c 265 struct body *nh; local
316 nh = tail->next;
318 tail = nh;
335 nh = newlink();
336 nh->next = NULL;
337 nh->prev = head;
338 head->next = nh;
339 nh->y = y;
340 nh->x = x;
341 display(nh, HEAD)
    [all...]
  /src/external/bsd/libpcap/dist/
pcap-nit.c 110 register struct nit_hdr *nh; local
158 nh = (struct nit_hdr *)bp;
159 cp = bp + sizeof(*nh);
161 switch (nh->nh_state) {
169 pn->stat.ps_drop = nh->nh_dropped;
177 "bad nit state %d", nh->nh_state);
181 bp += ((sizeof(struct nit_hdr) + nh->nh_datalen +
184 caplen = nh->nh_wirelen;
187 if (pcapint_filter(p->fcode.bf_insns, cp, nh->nh_wirelen, caplen)) {
189 h.ts = nh->nh_timestamp
    [all...]
  /src/external/apache2/llvm/dist/libcxx/src/
new.cpp 71 std::new_handler nh = std::get_new_handler(); variable
72 if (nh)
73 nh();
191 std::new_handler nh = std::get_new_handler(); variable
192 if (nh)
193 nh();
  /src/external/lgpl3/gmp/dist/mpn/sparc64/
sparc64.h 189 /* Divide nh:nl by d, setting q to the quotient and r to the remainder.
190 q, r, nh and nl are 32-bits each, d_limb is 32-bits but in an mp_limb_t,
193 #define udiv_qrnnd_half_preinv(q, r, nh, nl, d_limb, dinv_limb) \
200 ASSERT (nh < d_limb); \
202 _n2 = (nh); \
  /src/sys/external/bsd/libfdt/dist/
fdt_sw.c 215 struct fdt_node_header *nh; local
221 nh = fdt_grab_space_(fdt, sizeof(*nh) + FDT_TAGALIGN(namelen));
222 if (! nh)
225 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
226 memcpy(nh->name, name, namelen);
fdt_rw.c 323 struct fdt_node_header *nh; local
345 nh = fdt_offset_ptr_w_(fdt, offset);
346 nodelen = sizeof(*nh) + FDT_TAGALIGN(namelen+1) + FDT_TAGSIZE;
348 err = fdt_splice_struct_(fdt, nh, 0, nodelen);
352 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
353 memset(nh->name, 0, FDT_TAGALIGN(namelen+1));
354 memcpy(nh->name, name, namelen);
355 endtag = (fdt32_t *)((char *)nh + nodelen - FDT_TAGSIZE);
  /src/lib/libedit/
history.c 724 history_set_fun(TYPE(History) *h, TYPE(History) *nh)
728 if (nh->h_first == NULL || nh->h_next == NULL || nh->h_last == NULL ||
729 nh->h_prev == NULL || nh->h_curr == NULL || nh->h_set == NULL ||
730 nh->h_enter == NULL || nh->h_add == NULL || nh->h_clear == NULL |
    [all...]
  /src/external/lgpl3/gmp/dist/mpn/m68k/mc68020/
udiv.asm 35 C mp_limb_t nh, mp_limb_t nl, mp_limb_t d);
40 movel M(sp,8), d1 C nh
  /src/external/lgpl3/mpfr/dist/src/
mpfr-gmp.h 545 It computes q and r such that nh*2^GMP_NUMB_BITS + nl = q*d + r,
547 #define __udiv_qrnnd_preinv(q, r, nh, nl, d, di) \
550 umul_ppmm (_qh, _ql, (nh), (di)); \
553 _qh += (nh) + 1; \
561 add_ssaaaa (_qh, _ql, _qh, _ql, (nh) + 1, (nl)); \
578 #define __udiv_qrnd_preinv(q, r, nh, d) \
583 MPFR_ASSERTD ((nh) < (d)); \
587 __udiv_qrnnd_preinv (q, r, nh, 0, d, _di); \
591 #define __udiv_qrnd_preinv(q, r, nh, d) \
596 MPFR_ASSERTD ((nh) < (d));
    [all...]
  /src/external/gpl3/gdb/dist/readline/readline/
signals.c 59 # define rl_sigaction(s, nh, oh) sigaction(s, nh, oh)
338 rl_sigaction (int sig, sighandler_cxt *nh, sighandler_cxt *oh)
340 oh->sa_handler = signal (sig, nh->sa_handler);

Completed in 47 milliseconds

1 2 3 4 5