| /openbsd-src/sys/dev/fdt/ |
| H A D | hiclock.c | 64 const char *compat; member 81 .compat = "hisilicon,hi3670-crgctrl", 85 { .compat = "hisilicon,hi3670-pctrl" }, 86 { .compat = "hisilicon,hi3670-pmuctrl" }, 87 { .compat = "hisilicon,hi3670-pmctrl" }, 88 { .compat = "hisilicon,hi3670-sctrl" }, 89 { .compat = "hisilicon,hi3670-iomcu" }, 90 { .compat = "hisilicon,hi3670-media1-crg" }, 91 { .compat = "hisilicon,hi3670-media2-crg" }, 95 .compat = "hisilicon,kirin970-crgctrl", [all …]
|
| H A D | sxiccmu.c | 361 const char *compat; member 384 .compat = "allwinner,sun4i-a10-osc-clk", 388 .compat = "allwinner,sun4i-a10-pll6-clk", 393 .compat = "allwinner,sun4i-a10-apb1-clk", 397 .compat = "allwinner,sun4i-a10-ahb-gates-clk", 402 .compat = "allwinner,sun4i-a10-apb0-gates-clk", 407 .compat = "allwinner,sun4i-a10-apb1-gates-clk", 412 .compat = "allwinner,sun4i-a10-mmc-clk", 417 .compat = "allwinner,sun4i-a10-usb-clk", 423 .compat = "allwinner,sun5i-a10s-ahb-gates-clk", [all …]
|
| H A D | hitemp.c | 66 const char *compat; member 94 if (OF_is_compatible(faa->fa_node, hitemp_compat[i].compat)) in hitemp_match() 123 if (OF_is_compatible(faa->fa_node, hitemp_compat[i].compat)) { in hitemp_attach()
|
| /openbsd-src/sys/arch/macppc/dev/ |
| H A D | aoa.c | 89 char compat[32]; in aoa_match() local 98 bzero(compat, sizeof compat); in aoa_match() 99 OF_getprop(soundchip, "compatible", compat, sizeof compat); in aoa_match() 101 if (strcmp(compat, "AOAKeylargo") == 0 && in aoa_match() 104 if (strcmp(compat, "AOAK2") == 0) in aoa_match() 106 if (strcmp(compat, "AOAShasta") == 0) in aoa_match()
|
| H A D | daca.c | 100 char compat[32]; in daca_match() local 109 bzero(compat, sizeof compat); in daca_match() 110 OF_getprop(soundchip, "compatible", compat, sizeof compat); in daca_match() 112 if (strcmp(compat, "daca") != 0) in daca_match()
|
| H A D | tumbler.c | 245 char compat[32]; in tumbler_match() local 254 bzero(compat, sizeof compat); in tumbler_match() 255 OF_getprop(soundchip, "compatible", compat, sizeof compat); in tumbler_match() 257 if (strcmp(compat, "tumbler") != 0) in tumbler_match()
|
| H A D | xlights.c | 76 char compat[32]; in xlights_match() local 85 error = OF_getprop(soundchip, "virtual", compat, sizeof(compat)); in xlights_match() 87 error = OF_getprop(soundchip, "name", compat, in xlights_match() 88 sizeof(compat)); in xlights_match() 90 if (error == -1 || (strcmp(compat, "lightshow")) != 0) in xlights_match()
|
| H A D | snapper.c | 424 char compat[32]; in snapper_match() local 433 bzero(compat, sizeof compat); in snapper_match() 434 OF_getprop(soundchip, "compatible", compat, sizeof compat); in snapper_match() 436 if (strcmp(compat, "AOAKeylargo") == 0 && in snapper_match() 439 if (strcmp(compat, "snapper") == 0) in snapper_match()
|
| /openbsd-src/sys/arch/sparc64/dev/ |
| H A D | pcfiic_ebus.c | 64 char compat[32]; in pcfiic_ebus_match() local 73 if (OF_getprop(ea->ea_node, "compatible", compat, sizeof(compat)) == -1) in pcfiic_ebus_match() 76 if (strcmp(compat, "pcf8584") == 0 || in pcfiic_ebus_match() 77 strcmp(compat, "i2cpcf,8584") == 0 || in pcfiic_ebus_match() 78 strcmp(compat, "SUNW,i2c-pic16f747") == 0 || in pcfiic_ebus_match() 79 strcmp(compat, "SUNW,bbc-i2c") == 0) in pcfiic_ebus_match() 91 char compat[32]; in pcfiic_ebus_attach() local 101 if (OF_getprop(ea->ea_node, "compatible", compat, sizeof(compat)) > 0 && in pcfiic_ebus_attach() 102 strcmp(compat, "SUNW,bbc-i2c") == 0) { in pcfiic_ebus_attach()
|
| H A D | com_ebus.c | 94 char compat[80]; in com_ebus_match() local 102 OF_getprop(ea->ea_node, "compatible", compat, in com_ebus_match() 103 sizeof(compat)) == i) { in com_ebus_match() 104 if (strcmp(compat, "su16552") == 0 || in com_ebus_match() 105 strcmp(compat, "su16550") == 0 || in com_ebus_match() 106 strcmp(compat, "FJSV,su") == 0 || in com_ebus_match() 107 strcmp(compat, "su") == 0) { in com_ebus_match()
|
| H A D | comms_ebus.c | 168 char compat[80]; in comms_match() local 171 OF_getprop(ea->ea_node, "compatible", compat, in comms_match() 172 sizeof(compat)) == i) { in comms_match() 173 if (strcmp(compat, "su16550") == 0 || in comms_match() 174 strcmp(compat, "su") == 0) in comms_match()
|
| /openbsd-src/sys/arch/macppc/pci/ |
| H A D | mpcpcibus.c | 95 char * compat; member 310 char compat[32]; in mpcpcibrattach() local 323 len = OF_getprop(ca->ca_node, "name", compat, sizeof(compat)); in mpcpcibrattach() 324 compat[len] = '\0'; in mpcpcibrattach() 326 printf(" %s", compat); in mpcpcibrattach() 328 len = OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat)); in mpcpcibrattach() 330 len = OF_getprop(ca->ca_node, "name", compat, sizeof(compat)); in mpcpcibrattach() 335 compat[len] = 0; in mpcpcibrattach() 336 if (strcmp(compat, "bandit") != 0) { in mpcpcibrattach() 338 compat); in mpcpcibrattach() [all …]
|
| H A D | ht.c | 78 char compat[32]; in ht_attach() local 124 len = OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat)); in ht_attach() 128 printf(": %s", compat); in ht_attach()
|
| H A D | pci_machdep.c | 251 char compat[32]; in ofw_enumerate_pcibus() local 261 len = OF_getprop(node, "compatible", compat, sizeof(compat)); in ofw_enumerate_pcibus() 262 if (len > 0 && strcmp(compat, "u3-agp") == 0) { in ofw_enumerate_pcibus() 272 if (len > 0 && strcmp(compat, "u3-ht") == 0) { in ofw_enumerate_pcibus()
|
| /openbsd-src/regress/usr.bin/ssh/unittests/kex/ |
| H A D | test_proposal.c | 42 int compat; in kex_proposal_tests() member 54 ssh.compat = tests[i].compat; in kex_proposal_tests() 102 for (ssh.compat = 0; ssh.compat < 0x40000000; ) { in kex_proposal_populate_tests() 109 if (ssh.compat == 0) in kex_proposal_populate_tests() 110 ssh.compat = 1; in kex_proposal_populate_tests() 112 ssh.compat <<= 1; in kex_proposal_populate_tests()
|
| /openbsd-src/usr.bin/ssh/ |
| H A D | compat.c | 126 ssh->compat = 0; in compat_banner() 131 ssh->compat = check[i].bugs; in compat_banner() 144 if ((ssh->compat & (SSH_BUG_CURVE25519PAD|SSH_OLD_DHGEX)) == 0) in compat_kex_proposal() 147 if ((ssh->compat & SSH_BUG_CURVE25519PAD) != 0) in compat_kex_proposal() 151 if ((ssh->compat & SSH_OLD_DHGEX) != 0) { in compat_kex_proposal()
|
| /openbsd-src/usr.sbin/nsd/ |
| H A D | Makefile.in | 208 basename.o: $(srcdir)/compat/basename.c 209 $(COMPILE) -c $(srcdir)/compat/basename.c 211 inet_pton.o: $(srcdir)/compat/inet_pton.c 212 $(COMPILE) -c $(srcdir)/compat/inet_pton.c 214 inet_ntop.o: $(srcdir)/compat/inet_ntop.c 215 $(COMPILE) -c $(srcdir)/compat/inet_ntop.c 217 inet_aton.o: $(srcdir)/compat/inet_aton.c 218 $(COMPILE) -c $(srcdir)/compat/inet_aton.c 220 b64_pton.o: $(srcdir)/compat/b64_pton.c 221 $(COMPILE) -c $(srcdir)/compat/b64_pton.c [all …]
|
| H A D | acx_nlnetlabs.m4 | 36 # 2012-02-09 Fix AHX_MEMCMP_BROKEN with undef in compat/memcmp.h. 100 # AHX_CONFIG_SNPRINTF - snprintf compat prototype 101 # AHX_CONFIG_INET_PTON - inet_pton compat prototype 102 # AHX_CONFIG_INET_NTOP - inet_ntop compat prototype 103 # AHX_CONFIG_INET_ATON - inet_aton compat prototype 104 # AHX_CONFIG_MEMMOVE - memmove compat prototype 105 # AHX_CONFIG_STRLCAT - strlcat compat prototype 106 # AHX_CONFIG_STRLCPY - strlcpy compat prototype 107 # AHX_CONFIG_GMTIME_R - gmtime_r compat prototype 108 # AHX_CONFIG_W32_SLEEP - w32 compat for sleep [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | DiagnosticGroups.td | 44 def CXXPre14CompatBinaryLiteral : DiagGroup<"c++98-c++11-compat-binary-literal">; 147 def C99Compat : DiagGroup<"c99-compat">; 148 def C2xCompat : DiagGroup<"c2x-compat">; 149 def CXXCompat: DiagGroup<"c++-compat">; 150 def ExternCCompat : DiagGroup<"extern-c-compat">; 151 def KeywordCompat : DiagGroup<"keyword-compat">; 179 DiagGroup<"c++11-compat-deprecated-writable-strings">; 264 def CXX98CompatExtraSemi : DiagGroup<"c++98-compat-extra-semi">; 281 def CXX17CompatMangling : DiagGroup<"c++17-compat-mangling">; 282 def : DiagGroup<"c++1z-compat-mangling", [CXX17CompatMangling]>; [all …]
|
| /openbsd-src/sys/arch/arm64/dev/ |
| H A D | apliic.c | 248 char *compat; in apliic_bus_scan() local 267 compat = malloc(len, M_TEMP, M_WAITOK); in apliic_bus_scan() 268 OF_getprop(node, "compatible", compat, len); in apliic_bus_scan() 273 ia.ia_name = compat; in apliic_bus_scan() 278 free(compat, M_TEMP, len); in apliic_bus_scan()
|
| /openbsd-src/lib/libc/compat-43/ |
| H A D | Makefile.inc | 4 .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/compat-43 ${LIBCSRCDIR}/compat-43
|
| /openbsd-src/usr.sbin/unbound/ |
| H A D | acx_nlnetlabs.m4 | 36 # 2012-02-09 Fix AHX_MEMCMP_BROKEN with undef in compat/memcmp.h. 100 # AHX_CONFIG_SNPRINTF - snprintf compat prototype 101 # AHX_CONFIG_INET_PTON - inet_pton compat prototype 102 # AHX_CONFIG_INET_NTOP - inet_ntop compat prototype 103 # AHX_CONFIG_INET_ATON - inet_aton compat prototype 104 # AHX_CONFIG_MEMMOVE - memmove compat prototype 105 # AHX_CONFIG_STRLCAT - strlcat compat prototype 106 # AHX_CONFIG_STRLCPY - strlcpy compat prototype 107 # AHX_CONFIG_GMTIME_R - gmtime_r compat prototype 108 # AHX_CONFIG_W32_SLEEP - w32 compat for sleep [all …]
|
| /openbsd-src/usr.bin/make/ |
| H A D | enginechoice.c | 41 choose_engine(bool compat) in choose_engine() argument 43 engine = compat ? &compat_engine: ¶llel_engine; in choose_engine()
|
| /openbsd-src/gnu/gcc/gcc/config/ |
| H A D | t-libunwind | 8 $(srcdir)/unwind-compat.c $(srcdir)/unwind-dw2-fde-compat.c
|
| /openbsd-src/sys/arch/riscv64/dev/ |
| H A D | mpfiic.c | 347 char *compat; in mpfiic_i2c_scan() local 366 compat = malloc(len, M_TEMP, M_WAITOK); in mpfiic_i2c_scan() 367 OF_getprop(node, "compatible", compat, len); in mpfiic_i2c_scan() 372 ia.ia_name = compat; in mpfiic_i2c_scan() 377 free(compat, M_TEMP, len); in mpfiic_i2c_scan()
|