Searched refs:nh (Results 1 - 6 of 6) sorted by path

/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dgmp-impl.h218 #define udiv_qrnnd_preinv(q, r, nh, nl, d, di) \
222 umul_ppmm (_q, _ql, (nh), (di)); \
223 _q += (nh); /* DI is 2**BITS_PER_MP_LIMB too small */\
225 sub_ddmmss (_xh, _r, (nh), (nl), _xh, _xl); \
246 #define udiv_qrnnd_preinv2gen(q, r, nh, nl, d, di, dnorm, lgup) \
250 n2 = ((nh) << (BITS_PER_MP_LIMB - (lgup))) + ((nl) >> 1 >> (l - 1));\
258 add_ssaaaa (_xh, _xl, _xh, _xl, nh, nl); \
265 #define udiv_qrnnd_preinv2norm(q, r, nh, nl, d, di) \
269 n2 = (nh); \
277 add_ssaaaa (_xh, _xl, _xh, _xl, nh, n
[all...]
H A Dlonglong.h710 #define sdiv_qrnnd(q, r, nh, nl, d) \
711 __asm__ ("div %0,%2,%4" : "=r" (q), "=q" (r) : "r" (nh), "1" (nl), "r" (d))
1295 #define udiv_qrnnd(q, r, nh, nl, d) \
1298 (q) = __udiv_w_sdiv (&__r, nh, nl, d); \
/haiku/src/bin/network/ping/
H A Dping6.c2605 u_char *cp = (u_char *)ip6, nh; local
2615 nh = ip6->ip6_nxt;
2622 switch (nh) {
2626 nh = ((struct ip6_hbh *)cp)->ip6h_nxt;
2631 nh = ((struct ip6_dest *)cp)->ip6d_nxt;
2636 nh = ((struct ip6_frag *)cp)->ip6f_nxt;
2641 nh = ((struct ip6_rthdr *)cp)->ip6r_nxt;
2648 nh = ah.ah_nxt;
2669 printf("Unknown Header(%d)\n", nh);
/haiku/src/libs/libfdt/
H A Dfdt_ro.c302 const struct fdt_node_header *nh = fdt_offset_ptr_(fdt, nodeoffset); local
310 nameptr = nh->name;
H A Dfdt_rw.c336 struct fdt_node_header *nh; local
361 nh = fdt_offset_ptr_w_(fdt, offset);
362 nodelen = sizeof(*nh) + FDT_TAGALIGN(namelen+1) + FDT_TAGSIZE;
364 err = fdt_splice_struct_(fdt, nh, 0, nodelen);
368 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
369 memset(nh->name, 0, FDT_TAGALIGN(namelen+1));
370 memcpy(nh->name, name, namelen);
371 endtag = (fdt32_t *)((char *)nh + nodelen - FDT_TAGSIZE);
H A Dfdt_sw.c221 struct fdt_node_header *nh; local
227 nh = fdt_grab_space_(fdt, sizeof(*nh) + FDT_TAGALIGN(namelen));
228 if (! nh)
231 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
232 memcpy(nh->name, name, namelen);

Completed in 110 milliseconds