/freebsd/sys/contrib/device-tree/Bindings/ |
H A D | vendor-prefixes.yaml | 29 description: 70mai Co., Ltd. 43 description: Acelink Technology Co., Ltd. 49 description: Actions Semiconductor Co., Ltd. 91 description: Allwinner Technology Co., Ltd. 95 description: Alps Electric Co., Ltd. 109 description: Shenzhen Amediatech Technology Co., Ltd 117 description: Ampire Co., Ltd. 131 description: Guangzhou Aosong Electronic Co., Ltd. 141 description: ArcherMind Technology (Nanjing) Co., Ltd. 155 description: ArmSoM Technology Co., Ltd. [all …]
|
/freebsd/contrib/lua/src/ |
H A D | lcorolib.c | 22 lua_State *co = lua_tothread(L, 1); in getco() local 23 luaL_argexpected(L, co, 1, "thread"); in getco() 24 return co; in getco() 32 static int auxresume (lua_State *L, lua_State *co, int narg) { in auxresume() argument 34 if (l_unlikely(!lua_checkstack(co, narg))) { in auxresume() 38 lua_xmove(L, co, narg); in auxresume() 39 status = lua_resume(co, L, narg, &nres); in auxresume() 42 lua_pop(co, nres); /* remove results anyway */ in auxresume() 46 lua_xmove(co, L, nres); /* move yielded values */ in auxresume() 50 lua_xmove(co, L, 1); /* move error message */ in auxresume() [all …]
|
/freebsd/contrib/netbsd-tests/crypto/opencrypto/ |
H A D | h_aesctr2.c | 54 struct crypt_op co; in main() local 71 memset(&co, 0, sizeof(co)); in main() 72 co.ses = cs.ses; in main() 73 co.op = COP_ENCRYPT; in main() 74 co.len = sizeof(ibuf); in main() 75 co.src = ibuf; in main() 76 co.dst = obuf; in main() 77 co.dst_len = sizeof(obuf); in main() 78 res = ioctl(fd, CIOCCRYPT, &co); in main() 82 memset(&co, 0, sizeof(co)); in main() [all …]
|
H A D | h_gcm.c | 56 struct crypt_op co; in main() local 75 memset(&co, 0, sizeof(co)); in main() 78 co.ses = cs.ses; in main() 79 co.op = COP_ENCRYPT; in main() 80 co.len = sizeof(plaintx); in main() 81 co.src = plaintx; in main() 82 co.dst = databuf; in main() 83 co.mac = macbuf; in main() 84 co.iv = iv; in main() 85 res = ioctl(fd, CIOCCRYPT, &co); in main() [all …]
|
H A D | h_cbcdes.c | 52 struct crypt_op co; in main() local 66 memset(&co, 0, sizeof(co)); in main() 67 co.ses = cs.ses; in main() 68 co.op = COP_ENCRYPT; in main() 69 co.len = sizeof(plaintx); in main() 70 co.src = plaintx; in main() 71 co.dst = buf; in main() 72 co.dst_len = sizeof(buf); in main() 73 co.iv = iv; in main() 74 res = ioctl(fd, CIOCCRYPT, &co); in main() [all …]
|
H A D | h_null.c | 47 struct crypt_op co; in main() local 61 memset(&co, 0, sizeof(co)); in main() 62 co.ses = cs.ses; in main() 63 co.op = COP_ENCRYPT; in main() 64 co.len = sizeof(plaintx); in main() 65 co.src = plaintx; in main() 66 co.dst = buf; in main() 67 co.dst_len = sizeof(buf); in main() 68 res = ioctl(fd, CIOCCRYPT, &co); in main() 72 if (memcmp(co.dst, plaintx, sizeof(plaintx))) in main()
|
H A D | h_arc4.c | 51 struct crypt_op co; in main() local 65 memset(&co, 0, sizeof(co)); in main() 66 co.ses = cs.ses; in main() 67 co.op = COP_ENCRYPT; in main() 68 co.len = sizeof(plaintx); in main() 69 co.src = plaintx; in main() 70 co.dst = buf; in main() 71 co.dst_len = sizeof(buf); in main() 72 res = ioctl(fd, CIOCCRYPT, &co); in main() 76 if (memcmp(co.dst, ciphertx, sizeof(ciphertx))) in main()
|
H A D | h_camellia.c | 57 struct crypt_op co; in main() local 71 memset(&co, 0, sizeof(co)); in main() 72 co.ses = cs.ses; in main() 73 co.op = COP_ENCRYPT; in main() 74 co.len = sizeof(plaintx); in main() 75 co.src = plaintx; in main() 76 co.dst = buf; in main() 77 co.dst_len = sizeof(buf); in main() 78 co.iv = iv; in main() 79 res = ioctl(fd, CIOCCRYPT, &co); in main() [all …]
|
H A D | h_md5.c | 76 struct crypt_op co; in main() local 90 memset(&co, 0, sizeof(co)); in main() 92 co.ses = cs.ses; in main() 93 co.op = COP_ENCRYPT; in main() 94 co.len = tests[i].len; in main() 95 co.src = __UNCONST(&tests[i].plaintx); in main() 96 co.mac = buf; in main() 97 res = ioctl(fd, CIOCCRYPT, &co); in main() 101 if (memcmp(co.mac, tests[i].digest, sizeof(tests[i].digest))) in main()
|
H A D | h_xcbcmac.c | 78 struct crypt_op co; in main() local 93 memset(&co, 0, sizeof(co)); in main() 97 co.ses = cs.ses; in main() 98 co.op = COP_ENCRYPT; in main() 99 co.len = tests[i].len; in main() 100 co.src = plaintx; in main() 101 co.mac = buf; in main() 102 res = ioctl(fd, CIOCCRYPT, &co); in main()
|
H A D | h_md5hmac.c | 144 struct crypt_op co; in main() local 162 memset(&co, 0, sizeof(co)); in main() 164 co.ses = cs.ses; in main() 165 co.op = COP_ENCRYPT; in main() 166 co.len = tests[i].len; in main() 167 co.src = __UNCONST(&tests[i].data); in main() 168 co.mac = buf; in main() 169 res = ioctl(fd, CIOCCRYPT, &co); in main() 173 if (memcmp(co.mac, tests[i].mac, sizeof(tests[i].mac))) in main()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lcorolib.c | 17 static int auxresume (lua_State *L, lua_State *co, int narg) { in auxresume() argument 19 if (!lua_checkstack(co, narg)) { in auxresume() 23 if (lua_status(co) == LUA_OK && lua_gettop(co) == 0) { in auxresume() 27 lua_xmove(L, co, narg); in auxresume() 28 status = lua_resume(co, L, narg); in auxresume() 30 int nres = lua_gettop(co); in auxresume() 32 lua_pop(co, nres); /* remove results anyway */ in auxresume() 36 lua_xmove(co, L, nres); /* move yielded values */ in auxresume() 40 lua_xmove(co, L, 1); /* move error message */ in auxresume() 47 lua_State *co = lua_tothread(L, 1); in luaB_coresume() local [all …]
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | libunwind.cpp | 90 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in __unw_init_local() local 91 co->setInfoBasedOnIPRegister(); in __unw_init_local() 103 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in _LIBUNWIND_WEAK_ALIAS() local 104 if (co->validReg(regNum)) { in _LIBUNWIND_WEAK_ALIAS() 105 *value = co->getReg(regNum); in _LIBUNWIND_WEAK_ALIAS() 119 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in _LIBUNWIND_WEAK_ALIAS() local 120 if (co->validReg(regNum)) { in _LIBUNWIND_WEAK_ALIAS() 121 co->setReg(regNum, (pint_t)value); in _LIBUNWIND_WEAK_ALIAS() 127 co->getInfo(&info); in _LIBUNWIND_WEAK_ALIAS() 128 co->setInfoBasedOnIPRegister(false); in _LIBUNWIND_WEAK_ALIAS() [all …]
|
/freebsd/ |
H A D | .mailmap | 4 Mina Galić <freebsd@igalic.co> <freebsd_igalic.co> 5 Mina Galić <freebsd@igalic.co> <freebsd@igalic.co> 6 Mina Galić <freebsd@igalic.co> <me_igalic.co> 7 Mina Galić <freebsd@igalic.co> <me@igalic.co> 8 Mina Galić <freebsd@igalic.co> <me+freebsd@igalic.co> 9 Mina Galić <freebsd@igalic.co> <me+git@igalic.co>
|
/freebsd/tests/sys/acl/ |
H A D | tools-nfs4.test | 44 > owner@:rw-p---A-W-Co-:-------:allow 47 > everyone@:-wxp---A-W-Co-:-------:deny 52 > owner@:rw-p---A-W-Co-:-------:allow 55 > everyone@:-wxp---A-W-Co-:-------:deny 77 > owner@:rw-p---A-W-Co-:-------:allow 82 > everyone@:-wxp---A-W-Co-:-------:deny 94 > owner@:rw-p---A-W-Co-:-------:allow 99 > everyone@:-wxp---A-W-Co-:-------:deny 114 > owner@:rw-p---A-W-Co-:-------:allow 117 > everyone@:-wxp---A-W-Co-:-------:deny [all …]
|
H A D | tools-nfs4-psarc.test | 363 > user:42:-----------Co-:f-i----:allow 426 > user:42:-----------Co-:f-i---I:allow 440 > user:42:-----------Co-:f-i---I:allow 453 > user:42:-----------Co-:f-i---I:allow 463 $ setfacl -a0 u:42:Co:f:allow . 464 $ setfacl -a0 u:43:Co:d:allow . 465 $ setfacl -a0 u:44:Co:fd:allow . 466 $ setfacl -a0 u:45:Co:fi:allow . 467 $ setfacl -a0 u:46:Co:di:allow . 468 $ setfacl -a0 u:47:Co:fdi:allow . [all …]
|
/freebsd/usr.sbin/bluetooth/hccontrol/ |
H A D | util.c | 221 /* 0025 */ "Rohde & Schwarz GmbH & Co. KG", in hci_manufacturer2str() 231 /* 0035 */ "WavePlus Technology Co., Ltd.", in hci_manufacturer2str() 240 /* 0044 */ "Macronix International Co. Ltd.", in hci_manufacturer2str() 254 /* 0058 */ "Panasonic Corporation (formerly Matsushita Electric Industrial Co., Ltd.)", in hci_manufacturer2str() 304 /* 0108 */ "Beautiful Enterprise Co., Ltd.", in hci_manufacturer2str() 310 /* 0114 */ "ShangHai Super Smart Electronics Co. Ltd.", in hci_manufacturer2str() 313 /* 0117 */ "Samsung Electronics Co. Ltd.", in hci_manufacturer2str() 321 /* 0125 */ "Seers Technology Co., Ltd.", in hci_manufacturer2str() 340 /* 0144 */ "Funai Electric Co., Ltd.", in hci_manufacturer2str() 341 /* 0145 */ "Advanced PANMOBIL systems GmbH & Co. KG", in hci_manufacturer2str() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/ |
H A D | tst.lib_coroutine.lua | 102 -- sieve implemented with co-routines 137 co = coroutine.wrap(function() function 142 assert(co() == 20) 143 assert(co() == 30) 157 local co = coroutine.wrap(function (c) function 161 assert(co() == "aa") 183 -- co-routines x for loop 233 local co = coroutine.create(co_func) 234 local a,b,c = coroutine.resume(co, co) 236 a,b = coroutine.resume(co, co) [all …]
|
/freebsd/contrib/libfido2/udev/ |
H A D | 70-u2f.rules | 48 # FS ePass FIDO by Feitian Technologies Co., Ltd. 51 # Unknown product by Feitian Technologies Co., Ltd. 54 # Unknown product by Feitian Technologies Co., Ltd. 57 # Unknown product by Feitian Technologies Co., Ltd. 60 # Unknown product by Feitian Technologies Co., Ltd. 63 # Unknown product by Feitian Technologies Co., Ltd. 66 # FS MultiPass FIDO U2F by Feitian Technologies Co., Ltd. 69 # Unknown product by Feitian Technologies Co., Ltd. 72 # Unknown product by Feitian Technologies Co., Ltd. 75 # BioPass FIDO2 K33 by Feitian Technologies Co [all...] |
/freebsd/sys/contrib/device-tree/Bindings/remoteproc/ |
H A D | st-rproc.txt | 1 STMicroelectronics Co-Processor Bindings 6 Co-processors can be controlled from the bootloader or the primary OS. If 7 the bootloader starts a co-processor, the primary OS must detect its state 17 - clocks Clock for co-processor (See: ../clock/clock-bindings.txt) 18 - clock-frequency Clock frequency to set co-processor at if the bootloader 21 for the co-processor
|
/freebsd/lib/libgeom/ |
H A D | geom_xml2tree.c | 379 struct gconsumer *co; in geom_xml2tree() local 432 LIST_FOREACH(co, &ge->lg_consumer, lg_consumer) { in geom_xml2tree() 433 gmp->lg_ident[i].lg_id = co->lg_id; in geom_xml2tree() 434 gmp->lg_ident[i].lg_ptr = co; in geom_xml2tree() 446 LIST_FOREACH(co, &ge->lg_consumer, lg_consumer) { in geom_xml2tree() 447 co->lg_geom = geom_lookupidptr(gmp, co->lg_geom); in geom_xml2tree() 448 if (co->lg_provider != NULL) { in geom_xml2tree() 449 co->lg_provider = geom_lookupidptr(gmp, in geom_xml2tree() 450 co->lg_provider); in geom_xml2tree() 451 if (co->lg_provider != NULL) { in geom_xml2tree() [all …]
|
/freebsd/share/termcap/ |
H A D | termcap | 116 :bs:hc:os:pl:co#132:do=^J:kb=^H:up=\E\n:\ 121 :kb=^H:le=^H:bs:co#132:hc:hu=\EU:hd=\ED:os:pt:up=\E\n: 123 :do=^J:co#124:is=\r \E9:tc=1620: 130 :co#124:us=\EE:ue=\ER:so=\EW:se=\E&:tc=1620: 145 :bs:co#80:ce=^P^U:cl=20^P^]:cm=%r^P^Q%.%.:dc=^X:\ 152 :kb=^h:le=^H:bs:co#132:hc:hu=\EH:hd=\Eh:os:pt:up=^Z: 154 :le=^H:bs:co#132:hc:hd=\Eh:hu=\EH:os:pt:up=^Z:do=^J: 161 :dl=2*\E&D:ue=\E"U:co#80:li#24:se=\E"I:al=2*\E&I:im=\E'I:ei=\E'J:\ 167 :ct=\E3:st=\E1:do=^J:kb=^h:le=^H:bs:co#132:hc:hu=\E]s\E9\E]W:\ 171 :kb=^h:le=^H:bs:co#80:hc:hu=\EH:hd=\Eh:os:pt:up=^Z: [all …]
|
/freebsd/share/misc/ |
H A D | usb_vendors | 50 0085 Boeye Technology Co., Ltd. 64 0204 Chipsbank Microelectronics Co., Ltd 70 02ad HUMAX Co., Ltd. 84 03d9 Shenzhen Sinote Tech-Electron Co., Ltd 1069 040a Kodak Co. 1337 0414 Giga-Byte Technology Co., Ltd 2004 044a Shamrock Tech. Co., Ltd 2008 044e Alps Electric Co., Ltd 2610 0460 Ace Cad Enterprise Co., Ltd 2689 0468 Wieson Technologies Co., Ltd [all …]
|
/freebsd/tests/sys/net/routing/ |
H A D | rtsock_config.h | 60 config_setup(const atf_tc_t *tc, struct rtsock_config_options *co) in config_setup() argument 68 if (co == NULL) { in config_setup() 70 co = &default_co; in config_setup() 71 co->num_interfaces = 1; in config_setup() 129 if (co->num_interfaces > 0) { in config_setup() 136 c->ifnames = calloc(co->num_interfaces, sizeof(char *)); in config_setup() 137 for (int i = 0; i < co->num_interfaces; i++) in config_setup() 145 c->num_interfaces = co->num_interfaces; in config_setup()
|
/freebsd/contrib/less/ |
H A D | ubin.uni | 1 /* Generated by "./mkutable -f2 Cc Cs Co Zl Zp -- unicode/UnicodeData.txt" on Sun Sep 17 17:56:27 PDT 2023 */ 9 { 0xe000, 0xf8ff }, /* Co */ 10 { 0xf0000, 0xffffd }, /* Co */ 11 { 0x100000, 0x10fffd }, /* Co */
|