HomeSort by: relevance | last modified time | path
    Searched refs:io1 (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/dev/acpi/
pckbc_acpi.c 125 struct acpi_io *io0, *io1, *ioswap; local
159 io1 = acpi_res_io(&res, 1);
160 if (io0 == NULL || io1 == NULL) {
170 if (io0->ar_base > io1->ar_base) {
172 io0 = io1;
173 io1 = ioswap;
185 bus_space_map(aa->aa_iot, io1->ar_base,
186 io1->ar_length, 0, &ioh_c)) {
acpi_ec.c 326 struct acpi_io *io0, *io1; local
358 if ((io1 = acpi_res_io(&ec_res, 1)) == NULL) {
364 aa->aa_iot, io1->ar_base, aa->aa_iot, io0->ar_base,
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/allwinner/
axp81x.dtsi 141 reg_ldo_io1: ldo-io1 {
  /src/sys/crypto/aes/arch/arm/
aes_neon.c 605 uint8x16_t io0, jo0, io1, jo1; local
617 subbytes(&io1, &jo1, x1, inv_, inva_);
625 A_1 = vqtbl1q_u8(sb1_0, io1) ^ vqtbl1q_u8(sb1_1, jo1);
629 A2_1 = vqtbl1q_u8(sb2_0, io1) ^ vqtbl1q_u8(sb2_1, jo1);
638 x1 = vqtbl1q_u8(sbo[0], io1) ^ vqtbl1q_u8(sbo[1], jo1);
694 uint8x16_t io0, jo0, io1, jo1, mc; local
705 subbytes(&io1, &jo1, x1, inv_, inva_);
710 x1 = vqtbl1q_u8(dsb9[0], io1) ^ vqtbl1q_u8(dsb9[1], jo1);
718 x1 ^= vqtbl1q_u8(dsbd[0], io1) ^ vqtbl1q_u8(dsbd[1], jo1);
723 x1 ^= vqtbl1q_u8(dsbb[0], io1) ^ vqtbl1q_u8(dsbb[1], jo1)
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/broadcom/
Makefile 8 DTC_FLAGS_bcm2835-rpi-cm1-io1 := -@
26 bcm2835-rpi-cm1-io1.dtb \
  /src/external/mit/lua/dist/src/
lobject.h 123 { TValue *io1=(obj1); const TValue *io2=(obj2); \
124 io1->value_ = io2->value_; settt_(io1, io2->tt_); \
125 checkliveness(L,io1); lua_assert(!isnonstrictnil(io1)); }
  /src/crypto/external/apache2/openssl/dist/test/
ssl_old_test.c 2434 BIO *io1 = server_io, *io2 = client_io; local
2436 * we use the non-copying interface for io1 and the standard
2443 /* io1 to io2 */
2448 r1 = BIO_ctrl_pending(io1);
2460 r = BIO_nread(io1, &dataptr, (int)num);
2476 printf((io1 == client_io) ? "C->S relaying: %d bytes\n" : "S->C relaying: %d bytes\n", (int)num);
2480 /* io2 to io1 */
2486 r2 = BIO_ctrl_get_read_request(io1);
2504 r = BIO_nwrite0(io1, &dataptr);
2515 r = BIO_nwrite(io1, &dataptr, (int)num)
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
ssl_old_test.c 2439 BIO *io1 = server_io, *io2 = client_io; local
2441 * we use the non-copying interface for io1 and the standard
2448 /* io1 to io2 */
2453 r1 = BIO_ctrl_pending(io1);
2465 r = BIO_nread(io1, &dataptr, (int)num);
2481 printf((io1 == client_io) ?
2488 /* io2 to io1 */
2494 r2 = BIO_ctrl_get_read_request(io1);
2512 r = BIO_nwrite0(io1, &dataptr);
2523 r = BIO_nwrite(io1, &dataptr, (int)num)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
ssltest_old.c 2414 BIO *io1 = server_io, *io2 = client_io; local
2416 * we use the non-copying interface for io1 and the standard
2423 /* io1 to io2 */
2428 r1 = BIO_ctrl_pending(io1);
2440 r = BIO_nread(io1, &dataptr, (int)num);
2456 printf((io1 == client_io) ?
2463 /* io2 to io1 */
2469 r2 = BIO_ctrl_get_read_request(io1);
2487 r = BIO_nwrite0(io1, &dataptr);
2498 r = BIO_nwrite(io1, &dataptr, (int)num)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/frv/
frv.cc 7647 /* Return true if accesses IO1 and IO2 refer to the same doubleword. */
7650 frv_same_doubleword_p (const struct frv_io *io1, const struct frv_io *io2)
7652 if (io1->const_address != 0 && io2->const_address != 0)
7653 return io1->const_address == io2->const_address;
7655 if (io1->var_address != 0 && io2->var_address != 0)
7656 return rtx_equal_p (io1->var_address, io2->var_address);
7661 /* Return true if operations IO1 and IO2 are guaranteed to complete
7665 frv_io_fixed_order_p (const struct frv_io *io1, const struct frv_io *io2)
7668 if (io1->type == FRV_IO_WRITE && io2->type == FRV_IO_WRITE)
7672 if (io1->type != FRV_IO_WRITE && io2->type != FRV_IO_WRITE
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/frv/
frv.cc 7645 /* Return true if accesses IO1 and IO2 refer to the same doubleword. */
7648 frv_same_doubleword_p (const struct frv_io *io1, const struct frv_io *io2)
7650 if (io1->const_address != 0 && io2->const_address != 0)
7651 return io1->const_address == io2->const_address;
7653 if (io1->var_address != 0 && io2->var_address != 0)
7654 return rtx_equal_p (io1->var_address, io2->var_address);
7659 /* Return true if operations IO1 and IO2 are guaranteed to complete
7663 frv_io_fixed_order_p (const struct frv_io *io1, const struct frv_io *io2)
7666 if (io1->type == FRV_IO_WRITE && io2->type == FRV_IO_WRITE)
7670 if (io1->type != FRV_IO_WRITE && io2->type != FRV_IO_WRITE
    [all...]

Completed in 47 milliseconds