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

1 2 3 4 5

  /external/tcpdump/
print-msnlb.c 52 const struct msnlb_heartbeat_pkt *hb; local
54 hb = (struct msnlb_heartbeat_pkt *)bp;
55 ND_TCHECK(*hb);
58 EXTRACT_LE_32BITS(&(hb->host_prio))));
59 ND_PRINT((ndo, " cluster IP: %s,", ipaddr_string(ndo, &(hb->virtual_ip))));
60 ND_PRINT((ndo, " host IP: %s", ipaddr_string(ndo, &(hb->host_ip))));
print-sctp.c 123 { SCTP_HEARTBEAT_REQUEST, "HB REQ" },
124 { SCTP_HEARTBEAT_ACK, "HB ACK" },
305 struct sctpParamDesc hb; member in struct:sctpHBunified
312 struct sctpParamDesc hb; member in struct:sctpHBsender
  /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_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;
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;
  /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/clang/test/Sema/
attr-flag-enum.c 34 hb = 0x2, enumerator in enum:flag4
  /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 ()
41 hb.buffer_set_message_func (buf, debugger.message, 1, 0
    [all...]
  /external/skia/tests/
Float16Test.cpp 20 SkHalf hb = SkFloatToHalf(b); local
22 float b2 = SkHalfToFloat(hb);
  /external/lzma/CPP/7zip/UI/Common/
HashCalc.cpp 249 CHashBundle hb; local
250 RINOK(hb.SetMethods(EXTERNAL_CODECS_LOC_VARS options.Methods));
251 hb.Init();
252 hb.NumErrors = numErrors;
270 RINOK(callback->BeforeFirstFile(hb));
296 hb.NumErrors++;
306 hb.InitForNewFile();
317 hb.Update(buf, size);
322 hb.Final(isDir, isAltStream, path);
323 RINOK(callback->SetOperationResult(fileSize, hb, !isDir));
    [all...]
  /external/valgrind/drd/
drd_clientobj.h 150 struct hb_info hb; member in union:drd_clientobj
  /libcore/ojluni/src/main/java/java/nio/
CharBuffer.java 115 final char[] hb; // Non-null only for heap buffers field in class:CharBuffer
123 char[] hb, int offset) {
125 this.hb = hb;
693 return (hb != null) && !isReadOnly;
712 if (hb == null)
716 return hb;
736 if (hb == null)
    [all...]
DoubleBuffer.java 88 final double[] hb; // Non-null only for heap buffers field in class:DoubleBuffer
96 double[] hb, int offset) {
98 this.hb = hb;
490 return (hb != null) && !isReadOnly;
509 if (hb == null)
513 return hb;
533 if (hb == null)
FloatBuffer.java 89 final float[] hb; // Non-null only for heap buffers field in class:FloatBuffer
97 float[] hb, int offset) {
99 this.hb = hb;
491 return (hb != null) && !isReadOnly;
510 if (hb == null)
514 return hb;
534 if (hb == null)
IntBuffer.java 91 final int[] hb; // Non-null only for heap buffers field in class:IntBuffer
99 int[] hb, int offset) {
101 this.hb = hb;
493 return (hb != null) && !isReadOnly;
512 if (hb == null)
516 return hb;
536 if (hb == null)
LongBuffer.java 89 final long[] hb; // Non-null only for heap buffers field in class:LongBuffer
97 long[] hb, int offset) {
99 this.hb = hb;
491 return (hb != null) && !isReadOnly;
510 if (hb == null)
514 return hb;
534 if (hb == null)
ShortBuffer.java 90 final short[] hb; // Non-null only for heap buffers field in class:ShortBuffer
98 short[] hb, int offset) {
100 this.hb = hb;
492 return (hb != null) && !isReadOnly;
511 if (hb == null)
515 return hb;
535 if (hb == null)
ByteBuffer.java 202 final byte[] hb; // Non-null only for heap buffers field in class:ByteBuffer
210 byte[] hb, int offset) {
212 this.hb = hb;
550 if (this.hb != null && src.hb != null) {
552 System.arraycopy(src.hb, src.position() + src.offset, hb, position() + offset, n);
660 return (hb != null) && !isReadOnly();
679 if (hb == null
    [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/0.12.613/
kotlin-gradle-plugin-core-0.12.613.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.2.0/
sdklib-25.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.2.0-alpha4/
sdklib-25.2.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.2.0-alpha6/
sdklib-25.2.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.2.0-alpha7/
sdklib-25.2.0-alpha7.jar 

Completed in 724 milliseconds

1 2 3 4 5