Searched refs:vector (Results 1 - 25 of 81) sorted by relevance

1234

/barrelfish-2018-10-04/usr/tests/cxx/
H A Dstl_algorithms.cpp11 #include <vector>
H A Dstl_inheritance.cpp11 #include <vector>
H A Dstl_io.cpp11 #include <vector>
H A Dstl_templates.cpp11 #include <vector>
H A Dstl_vector.cpp11 #include <vector>
22 vector<vector<int> > vI2Matrix; // Declare two dimensional array
23 vector<int> A, B;
24 vector<vector<int> >::iterator iter_ii;
25 vector<int>::iterator iter_jj;
52 vector<vector<int> > vI2Matrix(3, vector<in
[all...]
H A Dstl_exceptions.cpp11 #include <vector>
H A Dstl_map.cpp11 #include <vector>
17 static std::vector<std::string> mapkeys {{"0", "1", "2"}};
H A Dcxx11.cpp11 #include <vector>
22 std::vector<int> v;
39 std::map<std::string, std::vector<int>> map;
40 std::vector<int> v, v2;
H A Dstl_threads.cpp11 #include <vector>
29 std::vector<std::thread> threads;
/barrelfish-2018-10-04/lib/compiler-rt/test/
H A Dcomparedf2_test.c37 int test__cmpdf2(const struct TestVector *vector) { argument
39 if (__eqdf2(vector->a, vector->b) != vector->eqReference) {
41 vector->a, vector->b,
42 __eqdf2(vector->a, vector->b),
43 vector->eqReference);
47 if (__gedf2(vector
[all...]
H A Dcomparesf2_test.c37 int test__cmpsf2(const struct TestVector *vector) { argument
39 if (__eqsf2(vector->a, vector->b) != vector->eqReference) {
41 vector->a, vector->b,
42 __eqsf2(vector->a, vector->b),
43 vector->eqReference);
47 if (__gesf2(vector
[all...]
/barrelfish-2018-10-04/kernel/arch/x86_32/
H A Dgdb_arch.c66 void gdb_handle_exception_onstack(int vector, uintptr_t * NONNULL
68 void gdb_handle_exception_onstack(int vector, uintptr_t * NONNULL argument
/barrelfish-2018-10-04/usr/acpi/arch/x86/
H A Dioapic.c81 void ioapic_route_inti(struct ioapic *a, int inti, uint8_t vector, uint8_t dest) argument
85 tbl.vector = vector;
H A Dioapic.h34 void ioapic_route_inti(struct ioapic *a, int inti, uint8_t vector,
H A Dacpi_interrupts_arch.c415 errval_t enable_and_route_interrupt(int gsi, coreid_t dest, int vector) argument
417 /* sanity-check vector */
419 if (vector < 0 || vector >= (250 - 32)) {
423 /* convert to CPU vector */
424 vector += 32;
468 ioapic_route_inti(i, inti, vector, dest_apicid);
471 "vector %d\n", gsi, gsi_mapped, inti, dest_apicid, dest, vector);
/barrelfish-2018-10-04/kernel/arch/x86_64/
H A Dgdb_arch.c44 /** \brief Converts exception vector to signal number.
46 * This function takes an x86 exception vector and attempts to
49 static int exception_to_signal(int vector) argument
51 switch (vector) {
84 void gdb_handle_exception_onstack(int vector, uintptr_t * NONNULL
86 void gdb_handle_exception_onstack(int vector, uintptr_t * NONNULL argument
112 int signal = exception_to_signal(vector);
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Den_cq.c121 if (!cq->vector) {
124 if (mlx4_assign_eq(mdev->dev, name, &cq->vector)) {
125 cq->vector = (cq->ring + 1 + priv->port)
132 cq->vector = (cq->ring + 1 + priv->port)
143 cq->vector = rx_cq->vector;
149 cq->wqres.db.dma, &cq->mcq, cq->vector, 0, timestamp_en);
175 if (priv->mdev->dev->caps.comp_pool && cq->vector)
176 mlx4_release_eq(priv->mdev->dev, cq->vector);
H A Dcq.c280 struct mlx4_uar *uar, u64 db_rec, struct mlx4_cq *cq, unsigned vector,
289 if (vector > priv->dev.caps.num_comp_vectors + priv->dev.caps.comp_pool)
292 cq->vector = vector;
318 cq_context->comp_eqn = priv->eq_table.eq[vector].eqn;
337 cq->eqn = priv->eq_table.eq[cq->vector].eqn;
338 cq->irq = priv->eq_table.eq[cq->vector].irq;
364 synchronize_irq(priv->eq_table.eq[cq->vector].irq);
279 mlx4_cq_alloc(struct mlx4_dev *dev, int nent, struct mlx4_mtt *mtt, struct mlx4_uar *uar, u64 db_rec, struct mlx4_cq *cq, unsigned vector, int collapsed, int timestamp_en) argument
/barrelfish-2018-10-04/kernel/include/
H A Dgdb_stub.h14 void gdb_handle_exception(int vector, uintptr_t *save_area)
/barrelfish-2018-10-04/lib/pci/
H A Dpci_client.c61 uint64_t vector = INVALID_VECTOR; local
67 reloc_handler_arg, &vector);
72 assert(vector != INVALID_VECTOR);
75 err = inthandler_setup(handler, handler_arg, &vector);
80 assert(vector != INVALID_VECTOR);
86 vector, &msgerr);
163 // For now, we just use the first vector passed to the driver.
167 DEBUG_ERR(err, "Could not lookup GSI vector");
182 DEBUG_ERR(err, "Could not lookup irq vector");
185 PCI_CLIENT_DEBUG("Got dest cap, vector
472 uint64_t vector = INVALID_VECTOR; local
511 uint64_t vector = INVALID_VECTOR; local
551 pci_msix_vector_init_addr(struct pci_addr *addr, uint16_t idx, uint8_t destination, uint8_t vector) argument
568 pci_msix_vector_init(uint16_t idx, uint8_t destination, uint8_t vector) argument
[all...]
/barrelfish-2018-10-04/kernel/include/arch/x86/
H A Dapic.h44 void apic_send_std_ipi(uint8_t destination, uint8_t destination_shorthand, uint8_t vector);
/barrelfish-2018-10-04/usr/acpi/
H A Dacpi_shared.h32 errval_t enable_and_route_interrupt(int gsi, coreid_t dest, int vector);
/barrelfish-2018-10-04/usr/pci/
H A Dpci_service.c88 uint32_t vector)
93 PCI_DEBUG("pci: init_legacy_device_handler: called. irq:%"PRIu8", coreid:%"PRIuCOREID", vector:%"PRIu32"\n", irq, coreid, vector);
113 if (vector != (uint32_t)-1) {
117 e = cl->rpc_tx_vtbl.enable_and_route_interrupt(cl, irq, coreid, vector, &ret_error);
120 DEBUG_ERR(e, "failed to route interrupt %d -> %d\n", irq, vector);
259 coreid_t coreid, uint32_t vector)
262 err = device_reregister_interrupt(coreid, vector,
322 uint8_t destination, uint8_t vector)
339 debug_printf("initialize MSI-X vector fo
85 init_legacy_device_handler(struct pci_binding *b, uint16_t iomin, uint16_t iomax, uint8_t irq, coreid_t coreid, uint32_t vector) argument
254 reregister_interrupt_handler(struct pci_binding *b, uint32_t class_code, uint32_t sub_class, uint32_t prog_if, uint32_t vendor_id, uint32_t device_id, uint32_t bus, uint32_t dev, uint32_t fun, coreid_t coreid, uint32_t vector) argument
320 msix_vector_init_addr_handler(struct pci_binding *b, uint8_t bus, uint8_t dev, uint8_t fun, uint16_t idx, uint8_t destination, uint8_t vector) argument
349 msix_vector_init_handler(struct pci_binding *b, uint16_t idx, uint8_t destination, uint8_t vector) argument
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/engines/rsaref/
H A Dbuild.com44 ; Transfer vector for VAX shareable image
48 ; Define macro to assist in building transfer vector entries. Each entry
67 ; Allocate extra storage at end of vector to allow for expansion.
73 ! Ensure transfer vector is at beginning of image
/barrelfish-2018-10-04/lib/barrelfish/
H A Dsys_debug.c77 errval_t sys_debug_send_ipi(uint8_t destination, uint8_t shorthand, uint8_t vector) argument
80 DEBUG_SEND_IPI, destination, shorthand, vector).error;

Completed in 111 milliseconds

1234