HomeSort by relevance Sort by last modified time
    Searched refs:hb (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/harfbuzz_ng/test/api/
test-c.c 32 #include <hb.h>
35 #include <hb-glib.h>
39 #include <hb-icu.h>
43 #include <hb-ft.h>
47 #include <hb-ot.h>
51 #include <hb-uniscribe.h>
55 #include <hb-coretext.h>
  /external/harfbuzz_ng/
Android.mk 54 src/hb-blob.cc \
55 src/hb-buffer-serialize.cc \
56 src/hb-buffer.cc \
57 src/hb-common.cc \
58 src/hb-face.cc \
59 src/hb-font.cc \
60 src/hb-ot-tag.cc \
61 src/hb-set.cc \
62 src/hb-shape.cc \
63 src/hb-shape-plan.cc
    [all...]
  /external/valgrind/drd/
drd_hb.h 41 struct hb_info* DRD_(hb_get)(const Addr hb);
42 struct hb_info* DRD_(hb_get_or_allocate)(const Addr hb);
43 void DRD_(hb_init)(const Addr hb);
44 void DRD_(hb_destroy)(const Addr hb);
45 void DRD_(hb_happens_after)(const DrdThreadId tid, const Addr hb);
46 void DRD_(hb_happens_before)(const DrdThreadId tid, const Addr hb);
47 void DRD_(hb_happens_done)(const DrdThreadId tid, const Addr hb);
drd_hb.c 38 /** Per-thread hb information. */
86 void DRD_(hb_initialize)(struct hb_info* const p, const Addr hb)
88 tl_assert(hb != 0);
89 tl_assert(p->a1 == hb);
94 p->oset = VG_(OSetGen_Create)(0, 0, VG_(malloc), "drd.hb",
130 struct hb_info* DRD_(hb_get_or_allocate)(const Addr hb)
134 tl_assert(offsetof(DrdClientobj, hb) == 0);
135 p = &(DRD_(clientobj_get)(hb, ClientHbvar)->hb);
139 if (DRD_(clientobj_present)(hb, hb + 1)
    [all...]
  /external/tcpdump/
print-msnlb.c 54 const struct msnlb_heartbeat_pkt *hb; local
56 hb = (struct msnlb_heartbeat_pkt *)bp;
57 ND_TCHECK(*hb);
60 EXTRACT_LE_32BITS(&(hb->host_prio))));
61 ND_PRINT((ndo, " cluster IP: %s,", ipaddr_string(&(hb->virtual_ip))));
62 ND_PRINT((ndo, " host IP: %s", ipaddr_string(&(hb->host_ip))));
sctpHeader.h 211 struct sctpParamDesc hb; member in struct:sctpHBunified
218 struct sctpParamDesc hb; member in struct:sctpHBsender
  /external/harfbuzz_ng/src/
sample.py 6 from gi.repository import HarfBuzz as hb namespace
25 blob = hb.glib_blob_create (GLib.Bytes.new (fontdata))
26 face = hb.face_create (blob, 0)
28 font = hb.font_create (face)
29 upem = hb.face_get_upem (face)
31 hb.font_set_scale (font, upem, upem)
32 #hb.ft_font_set_funcs (font)
33 hb.ot_font_set_funcs (font)
35 buf = hb.buffer_create ()
36 hb.buffer_add_utf8 (buf, text.encode('utf-8'), 0, -1
    [all...]
  /external/harfbuzz_ng/util/
ansi-print.hh 30 #include <hb.h> /* for int types */
hb-ot-shape-closure.cc 30 #include <hb-ft.h>
  /external/freetype/src/autofit/
hbshim.h 29 #include <hb.h>
30 #include <hb-ot.h>
31 #include <hb-ft.h>
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypot.c 58 int32_t j,k,ha,hb; local
62 GET_HIGH_WORD(hb,y);
63 hb &= 0x7fffffff;
64 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
67 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */
77 if(((hb^0x7ff00000)|low)==0) w = b;
81 ha -= 0x25800000; hb -= 0x25800000; k += 600;
83 SET_HIGH_WORD(b,hb);
    [all...]
e_hypotf.c 26 int32_t j,k,ha,hb; local
30 GET_FLOAT_WORD(hb,y);
31 hb &= 0x7fffffff;
32 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
35 if((ha-hb)>0xf000000) {return a+b;} /* x/y > 2**30 */
42 if(hb == 0x7f800000) w = b;
46 ha -= 0x22000000; hb -= 0x22000000; k += 68;
48 SET_FLOAT_WORD(b,hb);
    [all...]
e_hypotl.c 52 int32_t j,k,ha,hb; local
56 GET_HIGH_WORD(hb,y);
57 hb &= 0x7fff;
58 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
61 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */
71 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b;
75 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88);
78 SET_HIGH_WORD(b,hb);
    [all...]
s_fmal.c 136 long double ha, hb, la, lb, p, q; local
144 hb = b - p;
145 hb += p;
146 lb = b - hb;
148 p = ha * hb;
149 q = ha * lb + la * hb;
s_fma.c 140 double ha, hb, la, lb, p, q; local
148 hb = b - p;
149 hb += p;
150 lb = b - hb;
152 p = ha * hb;
153 q = ha * lb + la * hb;
  /external/fdlibm/
e_hypot.c 56 int j,k,ha,hb; local
59 hb = __HI(y)&0x7fffffff; /* high word of y */
60 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
62 __HI(b) = hb; /* b <- |b| */
63 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */
69 if(((hb^0x7ff00000)|__LO(b))==0) w = b;
73 ha -= 0x25800000; hb -= 0x25800000; k += 600;
75 __HI(b) = hb;
    [all...]
  /external/harfbuzz_ng/test/shaping/
run-tests.sh 7 hb_shape=$top_builddir/util/hb-shape$EXEEXT
20 glyphs=`$srcdir/hb-unicode-encode "$unicodes" | $hb_shape "$srcdir/$fontfile"`
record-test.sh 10 unicodes=`./hb-unicode-decode`
11 text=`./hb-unicode-encode "$unicodes"`
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParser.java 115 * @param hb The SAX HandlerBase to use.
124 public void parse(InputStream is, HandlerBase hb)
131 this.parse(input, hb);
141 * @param hb The SAX HandlerBase to use.
154 HandlerBase hb,
163 this.parse(input, hb);
227 * @param hb The SAX HandlerBase to use.
235 public void parse(String uri, HandlerBase hb)
242 this.parse(input, hb);
276 * @param hb The SAX HandlerBase to use
    [all...]
  /frameworks/base/core/jni/android/graphics/
HarfBuzzNGFaceSkia.h 33 #include <hb.h>
  /external/llvm/test/MC/Mips/mips5/
invalid-mips64.s 13 jr.hb $4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
14 jalr.hb $4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
15 jalr.hb $4, $5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/jemalloc/src/
rtree.c 5 hmin(unsigned ha, unsigned hb)
8 return (ha < hb ? ha : hb);
  /external/clang/test/Sema/
attr-flag-enum.c 34 hb = 0x2, enumerator in enum:flag4
  /external/linux-tools-perf/src/tools/perf/ui/browsers/
hists.c 313 static void hist_browser__update_pcnt_entries(struct hist_browser *hb);
797 struct hist_browser *hb; local
799 hb = container_of(browser, struct hist_browser, b);
800 browser->top = rb_first(&hb->hists->entries);
808 struct hist_browser *hb = container_of(browser, struct hist_browser, b); local
815 hb->hists->stats.total_period;
820 if (percent < hb->min_pcnt)
823 row += hist_browser__show_entry(hb, h, row);
876 struct hist_browser *hb; local
878 hb = container_of(browser, struct hist_browser, b)
    [all...]
  /external/clang/test/SemaCXX/
addr-of-overloaded-function.cpp 41 void hb(int (*fp)(double));
45 hb(h1);

Completed in 503 milliseconds

1 2 3 4 5