HomeSort by: relevance | last modified time | path
    Searched refs:_h (Results 1 - 22 of 22) sorted by relevancy

  /src/external/lgpl3/mpfr/dist/src/
invsqrt_limb.h 235 mp_limb_t _d, _i, _v0, _e0, _d37, _v1, _e1, _h, _v2, _e2; \
245 umul_hi (_h, _v1, _e1); \
246 /* _h = floor(e_1*v_1/2^64) */ \
247 _v2 = (_v1 << 10) + (_h >> 6); \
248 umul_hi (_h, _v2 * _v2, _d); \
249 /* in _h + 2, one +1 accounts for the lower neglected part of */ \
251 _e2 = (MPFR_LIMB_ONE << 61) - ((_h + 2) >> 1); \
252 _h = _v2 * _e2; \
253 (r) = (_v2 << 33) + (_h >> 29); \
260 mp_limb_t _d, _i, _v0, _e0, _d37, _v1, _e1, _h; \
    [all...]
invert_limb.h 108 mp_limb_t _d, _d0, _i, _d40, _d63, _v0, _v1, _v2, _e, _v3, _h, _l; \
122 umul_hi (_h, _v2, _e); \
123 _v3 = (_v2 << 31) + (_h >> 1); \
124 umul_ppmm (_h, _l, _v3, _d); \
126 add_ssaaaa(_h, _l, _h, _l, _d, _d); \
127 MPFR_ASSERTD(_h == MPFR_LIMB_ZERO || -_h == MPFR_LIMB_ONE); \
128 (r) = _v3 - _h; \
135 mp_limb_t _d, _d0, _i, _d40, _d63, _v0, _v1, _v2, _e, _h; \
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/
head.h 50 struct nvkm_head *_h = (h); \
51 nvkm_##l(&_h->disp->engine.subdev, "head-%d: "f"\n", _h->id, ##a); \
  /src/sys/external/bsd/ipf/netinet/
ipf_rb.h 57 # define RBI_DELETE(_n, _h, _v) rb_tree_remove_node(_h, _v)
58 # define RBI_INIT(_n, _h) rb_tree_init(_h, &_n##_tree_ops)
59 # define RBI_INSERT(_n, _h, _v) rb_tree_insert_node(_h, _v)
60 # define RBI_ISEMPTY(_h) (rb_tree_iterate(_h, NULL, RB_DIR_RIGHT) == NULL)
61 # define RBI_SEARCH(_n, _h, _k) rb_tree_find_node(_h, _k
    [all...]
ip_compat.h 1524 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \
1525 DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
1531 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
1538 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
  /src/external/bsd/ipf/dist/
ipf_rb.h 359 #define RBI_DELETE(_n, _h, _v) _n##_rb_delete(_h, _v)
361 #define RBI_INIT(_n, _h) _n##_rb_init(_h)
362 #define RBI_INSERT(_n, _h, _v) _n##_rb_insert(_h, _v)
363 #define RBI_ISEMPTY(_h) ((_h)->count == 0)
364 #define RBI_SEARCH(_n, _h, _k) _n##_rb_search(_h, _k
    [all...]
  /src/external/lgpl2/userspace-rcu/dist/include/urcu/static/
wfcqueue.h 139 const struct __cds_wfcq_head *head = u_head._h;
174 struct __cds_wfcq_head *head = u_head._h;
283 struct __cds_wfcq_head *head = u_head._h;
396 struct __cds_wfcq_head *head = u_head._h;
524 struct __cds_wfcq_head *dest_q_head = u_dest_q_head._h;
525 struct __cds_wfcq_head *src_q_head = u_src_q_head._h;
  /src/external/lgpl2/userspace-rcu/dist/include/urcu/
wfcqueue.h 78 struct __cds_wfcq_head *_h; member in union:__anon23281
83 const struct __cds_wfcq_head *_h; member in union:__anon23282
135 cds_wfcq_head_ptr_t ret = { ._h = head };
155 cds_wfcq_head_const_ptr_t ret = { ._h = head };
538 cds_wfcq_head_ptr_t ret = { ._h = head };
550 cds_wfcq_head_const_ptr_t ret = { ._h = head };
  /src/external/gpl3/gcc/lib/libstdc++-v3/include/bits/
Makefile 47 -e 's/\(GCC[A-Z_]*_H\)/_GLIBCXX_\1/g' \
53 -e 's/\(GCC[A-Z_]*_H\)/_GLIBCXX_\1/g' \
86 .for _h _s in ${COPYHEADERS}
87 ${_h}: ${_s}
  /src/external/gpl3/gcc.old/lib/libstdc++-v3/include/bits/
Makefile 47 -e 's/\(GCC[A-Z_]*_H\)/_GLIBCXX_\1/g' \
53 -e 's/\(GCC[A-Z_]*_H\)/_GLIBCXX_\1/g' \
86 .for _h _s in ${COPYHEADERS}
87 ${_h}: ${_s}
  /src/external/ibm-public/postfix/dist/src/util/
binhash.c 177 BINHASH_INFO **_h = table->data + binhash_hash(elm->key, elm->key_len, table->size);\
179 if ((elm->next = *_h) != 0) \
180 (*_h)->prev = elm; \
181 *_h = elm; \
htable.c 170 HTABLE_INFO **_h = table->data + htable_hash(element->key, table->size);\
172 if ((element->next = *_h) != 0) \
173 (*_h)->prev = element; \
174 *_h = element; \
  /src/external/cddl/osnet/dist/uts/common/sys/
sysmacros.h 365 #define DECL_BITFIELD8(_a, _b, _c, _d, _e, _f, _g, _h) \
366 uint8_t _a, _b, _c, _d, _e, _f, _g, _h
380 #define DECL_BITFIELD8(_a, _b, _c, _d, _e, _f, _g, _h) \
381 uint8_t _h, _g, _f, _e, _d, _c, _b, _a
  /src/external/cddl/osnet/dist/lib/libzpool/common/sys/
zfs_context.h 369 #define kmem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i) \
370 umem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i)
  /src/sys/dev/usb/
utoppy.c 170 struct utoppy_header *_h = sc->sc_out_data; \
171 _h->h_len = 0; \
  /src/external/gpl3/binutils/dist/bfd/
elf32-m68k.c 2419 elf_m68k_init_symndx2h_1 (struct elf_link_hash_entry *_h,
2424 h = elf_m68k_hash_entry (_h);
  /src/external/gpl3/binutils.old/dist/bfd/
elf32-m68k.c 2420 elf_m68k_init_symndx2h_1 (struct elf_link_hash_entry *_h,
2425 h = elf_m68k_hash_entry (_h);
  /src/external/gpl3/gdb/dist/bfd/
elf32-m68k.c 2420 elf_m68k_init_symndx2h_1 (struct elf_link_hash_entry *_h,
2425 h = elf_m68k_hash_entry (_h);
  /src/external/gpl3/gdb.old/dist/bfd/
elf32-m68k.c 2421 elf_m68k_init_symndx2h_1 (struct elf_link_hash_entry *_h,
2426 h = elf_m68k_hash_entry (_h);
  /src/sys/dev/ic/
ath.c 2471 #define TSF_TO_TU(_h,_l) \
2472 ((((u_int32_t)(_h)) << 22) | (((u_int32_t)(_l)) >> 10))
  /src/external/bsd/ntp/dist/sntp/
configure 25422 do eval as_ac_var=\${ac_cv_header_${f}_h}
  /src/external/bsd/ntp/dist/
configure 15393 do eval as_ac_var=\${ac_cv_header_${f}_h}

Completed in 92 milliseconds