| /freebsd/sys/dev/qat/qat_common/ |
| H A D | adf_freebsd_heartbeat_dbg.c | 25 struct adf_heartbeat *hb; in qat_dev_hb_read_sent() local 34 hb = accel_dev->heartbeat; in qat_dev_hb_read_sent() 36 error = sysctl_handle_int(oidp, &hb->hb_sent_counter, 0, req); in qat_dev_hb_read_sent() 46 struct adf_heartbeat *hb; in qat_dev_hb_read_failed() local 55 hb = accel_dev->heartbeat; in qat_dev_hb_read_failed() 57 error = sysctl_handle_int(oidp, &hb->hb_failed_counter, 0, req); in qat_dev_hb_read_failed() 64 /* Handler for HB status check */ 69 struct adf_heartbeat *hb; in qat_dev_hb_read() local 78 hb = accel_dev->heartbeat; in qat_dev_hb_read() 85 hb->heartbeat.hb_sysctlvar = 1; in qat_dev_hb_read() [all …]
|
| /freebsd/lib/msun/src/ |
| H A D | e_hypotf.c | 23 int32_t j,k,ha,hb; in hypotf() local 27 GET_FLOAT_WORD(hb,y); in hypotf() 28 hb &= 0x7fffffff; in hypotf() 29 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in hypotf() 32 if((ha-hb)>0xf000000) {return a+b;} /* x/y > 2**30 */ in hypotf() 39 if(hb == 0x7f800000) w = b; in hypotf() 43 ha -= 0x22000000; hb -= 0x22000000; k += 68; in hypotf() 45 SET_FLOAT_WORD(b,hb); in hypotf() 47 if(hb < 0x26800000) { /* b < 2**-50 */ in hypotf() 48 if(hb <= 0x007fffff) { /* subnormal b or 0 */ in hypotf() [all …]
|
| H A D | e_hypot.c | 54 int32_t j,k,ha,hb; in hypot() local 58 GET_HIGH_WORD(hb,y); in hypot() 59 hb &= 0x7fffffff; in hypot() 60 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in hypot() 63 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */ in hypot() 73 if(((hb^0x7ff00000)|low)==0) w = b; in hypot() 77 ha -= 0x25800000; hb -= 0x25800000; k += 600; in hypot() 79 SET_HIGH_WORD(b,hb); in hypot() 81 if(hb < 0x20b00000) { /* b < 2**-500 */ in hypot() 82 if(hb <= 0x000fffff) { /* subnormal b or 0 */ in hypot() [all …]
|
| H A D | e_hypotl.c | 48 int32_t j,k,ha,hb; in hypotl() local 52 GET_HIGH_WORD(hb,y); in hypotl() 53 hb &= 0x7fff; in hypotl() 54 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in hypotl() 57 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */ in hypotl() 67 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b; in hypotl() 71 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88); in hypotl() 74 SET_HIGH_WORD(b,hb); in hypotl() 76 if(hb < ESW(-(MAX_EXP/2-12))) { /* b < 2**-(MAX_EXP/2-12) */ in hypotl() 77 if(hb <= 0) { /* subnormal b or 0 */ in hypotl() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/clock/ |
| H A D | calxeda.yaml | 13 "hb-sregs" node. 24 - calxeda,hb-pll-clock 25 - calxeda,hb-a9periph-clock 26 - calxeda,hb-a9bus-clock 27 - calxeda,hb-emmc-clock 46 compatible = "calxeda,hb-sregs"; 61 compatible = "calxeda,hb-pll-clock"; 68 compatible = "calxeda,hb-pll-clock"; 75 compatible = "calxeda,hb-a9periph-clock";
|
| /freebsd/sys/contrib/device-tree/src/arm/calxeda/ |
| H A D | ecx-common.dtsi | 26 compatible = "calxeda,hb-ahci"; 39 compatible = "calxeda,hb-sdhci"; 132 compatible = "calxeda,hb-sregs"; 147 compatible = "calxeda,hb-pll-clock"; 154 compatible = "calxeda,hb-pll-clock"; 161 compatible = "calxeda,hb-a9periph-clock"; 168 compatible = "calxeda,hb-a9bus-clock"; 175 compatible = "calxeda,hb-pll-clock"; 182 compatible = "calxeda,hb-emmc-clock"; 204 compatible = "calxeda,hb-xgmac"; [all …]
|
| /freebsd/contrib/tcp_wrappers/ |
| H A D | scaffold.c | 52 struct hostent_block *hb; in dup_hostent() local 60 if ((hb = (struct hostent_block *) malloc(sizeof(struct hostent_block) in dup_hostent() 65 memset((char *) &hb->host, 0, sizeof(hb->host)); in dup_hostent() 66 hb->host.h_length = hp->h_length; in dup_hostent() 67 hb->host.h_addr_list = hb->addr_list; in dup_hostent() 68 hb->host.h_addr_list[count] = 0; in dup_hostent() 69 data = (char *) (hb->host.h_addr_list + count + 1); in dup_hostent() 72 hb->host.h_addr_list[count] = data + hp->h_length * count; in dup_hostent() 73 memcpy(hb->host.h_addr_list[count], addr, hp->h_length); in dup_hostent() 75 return (&hb->host); in dup_hostent()
|
| /freebsd/contrib/tcpdump/ |
| H A D | print-msnlb.c | 51 const struct msnlb_heartbeat_pkt *hb; in msnlb_print() local 54 hb = (const struct msnlb_heartbeat_pkt *)bp; in msnlb_print() 57 ND_PRINT(", host priority: %u", GET_LE_U_4((hb->host_prio))); in msnlb_print() 58 ND_PRINT(", cluster IP: %s", GET_IPADDR_STRING(hb->virtual_ip)); in msnlb_print() 59 ND_PRINT(", host IP: %s", GET_IPADDR_STRING(hb->host_ip)); in msnlb_print()
|
| /freebsd/lib/msun/ld80/ |
| H A D | e_powl.c | 228 #define Hb Wb macro 248 /* double F, Fa, Fb, G, Ga, Gb, H, Ha, Hb */ in powl() 463 Hb = H - Ha; in powl() 465 if( Hb > 0.0L ) in powl() 468 Hb -= (1.0L/NXT); /*0.0625L;*/ in powl() 471 /* Now the product y * log2(x) = Hb + e/NXT. in powl() 473 * Compute base 2 exponential of Hb, in powl() 474 * where -0.0625 <= Hb <= 0. in powl() 476 z = Hb * __polevll( Hb, R, 6 ); /* z = 2**Hb - 1 */ in powl() 488 z = w * z; /* 2**-e * ( 1 + (2**Hb-1) ) */ in powl()
|
| /freebsd/sys/contrib/device-tree/Bindings/arm/calxeda/ |
| H A D | hb-sregs.yaml | 4 $id: http://devicetree.org/schemas/arm/calxeda/hb-sregs.yaml# 19 const: calxeda,hb-sregs 36 compatible = "calxeda,hb-sregs";
|
| H A D | l2ecc.yaml | 19 const: calxeda,hb-sregs-l2-ecc 39 compatible = "calxeda,hb-sregs-l2-ecc";
|
| /freebsd/crypto/heimdal/include/ |
| H A D | bits.c | 121 const char *fn, *hb; in main() local 130 hb = "__BITS_H__"; in main() 137 hb = p; in main() 147 fprintf(f, "#ifndef %s\n", hb); in main() 148 fprintf(f, "#define %s\n", hb); in main() 292 fprintf(f, "#endif /* %s */\n", hb); in main()
|
| /freebsd/contrib/bearssl/src/hash/ |
| H A D | ghash_ctmul64.c | 80 const unsigned char *buf, *hb; in br_ghash_ctmul64() local 87 hb = h; in br_ghash_ctmul64() 90 h1 = br_dec64be(hb); in br_ghash_ctmul64() 91 h0 = br_dec64be(hb + 8); in br_ghash_ctmul64()
|
| H A D | ghash_ctmul32.c | 105 const unsigned char *buf, *hb; in br_ghash_ctmul32() local 112 hb = h; in br_ghash_ctmul32() 117 hw[3] = br_dec32be(hb); in br_ghash_ctmul32() 118 hw[2] = br_dec32be(hb + 4); in br_ghash_ctmul32() 119 hw[1] = br_dec32be(hb + 8); in br_ghash_ctmul32() 120 hw[0] = br_dec32be(hb + 12); in br_ghash_ctmul32()
|
| H A D | ghash_ctmul.c | 199 const unsigned char *buf, *hb; in br_ghash_ctmul() local 210 hb = h; in br_ghash_ctmul() 215 hw[3] = br_dec32be(hb); in br_ghash_ctmul() 216 hw[2] = br_dec32be(hb + 4); in br_ghash_ctmul() 217 hw[1] = br_dec32be(hb + 8); in br_ghash_ctmul() 218 hw[0] = br_dec32be(hb + 12); in br_ghash_ctmul()
|
| /freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | calxeda-ddr-ctrlr.yaml | 20 - calxeda,hb-ddr-ctrl 39 compatible = "calxeda,hb-ddr-ctrl";
|
| /freebsd/sys/contrib/device-tree/Bindings/net/ |
| H A D | calxeda-xgmac.yaml | 21 const: calxeda,hb-xgmac 46 compatible = "calxeda,hb-xgmac";
|
| /freebsd/sys/contrib/device-tree/Bindings/phy/ |
| H A D | calxeda-combophy.yaml | 22 const: calxeda,hb-combophy 46 compatible = "calxeda,hb-combophy";
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineLoopInfo.cpp | 154 MachineBasicBlock *HB = L->getHeader(), *LB = L->getLoopLatch(); in findLoopPreheader() local 155 if (HB->pred_size() != 2 || HB->hasAddressTaken()) in findLoopPreheader() 159 for (MachineBasicBlock *P : HB->predecessors()) { in findLoopPreheader() 172 if (S == HB) in findLoopPreheader()
|
| /freebsd/sys/contrib/device-tree/Bindings/media/i2c/ |
| H A D | ov7670.txt | 21 - ov7670,pclk-hb-disable: a boolean property to suppress pixel clock output 44 ov7670,pclk-hb-disable;
|
| H A D | ovti,ov7670.txt | 21 - ov7670,pclk-hb-disable: a boolean property to suppress pixel clock output 44 ov7670,pclk-hb-disable;
|
| /freebsd/crypto/openssl/crypto/des/asm/ |
| H A D | crypt586.pl | 115 &movb( &LB($tmp2), &HB($u) ); 121 &movb( &LB($tmp2), &HB($t) ); 124 &movb( &LB($tmp1), &HB($u) ); 127 &movb( &LB($tmp2), &HB($t) );
|
| /freebsd/crypto/openssl/crypto/perlasm/ |
| H A D | cbc.pl | 169 &movb(&HB("edx"), &BP(6,$in,"",0)); 173 &movb(&HB("edx"), &BP(5,$in,"",0)); 183 &movb(&HB("ecx"), &BP(2,$in,"",0)); 187 &movb(&HB("ecx"), &BP(1,$in,"",0)); 301 &movb(&BP(5,$out,"",0), &HB("edx")); 312 &movb(&BP(1,$in,"",0), &HB("ecx"));
|
| /freebsd/sys/contrib/device-tree/Bindings/ata/ |
| H A D | sata_highbank.yaml | 19 const: calxeda,hb-ahci 82 compatible = "calxeda,hb-ahci";
|
| /freebsd/crypto/openssl/crypto/aes/asm/ |
| H A D | aes-586.pl | 262 &movz ($s[2],&HB($s[0])); 267 &movz ($s[1],&HB($v1)); 275 &movz ($v0,&HB($v1)); 278 &movz ($v0,&HB($v1)); 287 &movz ($v1,&HB($v0)); 290 &movz ($v1,&HB($v0)); 299 &movz ($v0,&HB($v1)); 302 &movz ($v0,&HB($v1)); 317 &movz ($v0,&HB($s1)); # 7, 6, 5*, 4 320 &movz ($v0,&HB($s2)); # 8,11,10*, 9 [all …]
|