HomeSort by: relevance | last modified time | path
    Searched refs:vector (Results 1 - 25 of 174) sorted by relevancy

1 2 3 4 5 6 7

  /src/tests/usr.bin/xlint/lint1/
msg_321.c 8 int vector[3] = { variable in typeref:typename:int[3]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/include/
vector.h 1 /* $NetBSD: vector.h,v 1.2 2021/12/18 23:45:07 riastradh Exp $ */
31 struct vector { struct
40 struct vector *vector,
45 struct vector *dal_vector_create(
51 * each "structure" in the vector will contain zeros by default. */
52 struct vector *dal_vector_presized_create(
59 struct vector *vector);
62 struct vector **vector)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/basics/
amdgpu_vector.c 34 #include "include/vector.h"
37 struct vector *vector,
42 vector->container = NULL;
50 vector->container = kcalloc(capacity, struct_size, GFP_KERNEL);
51 if (vector->container == NULL)
53 vector->capacity = capacity;
54 vector->struct_size = struct_size;
55 vector->count = 0;
56 vector->ctx = ctx
105 struct vector *vector = kzalloc(sizeof(struct vector), GFP_KERNEL); local in function:dal_vector_presized_create
124 struct vector *vector = kzalloc(sizeof(struct vector), GFP_KERNEL); local in function:dal_vector_create
    [all...]
Makefile 28 log_helpers.o vector.o dc_common.o
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_test_config.h 20 #include <vector>
sanitizer_linux_test.cc 28 #include <vector>
88 std::vector<pthread_t> pthread_ids_;
89 std::vector<tid_t> tids_;
123 static std::vector<tid_t> ReadTidsToVector(ThreadLister *thread_lister) {
124 std::vector<tid_t> listed_tids;
127 return std::vector<tid_t>(threads.begin(), threads.end());
130 static bool Includes(std::vector<tid_t> first, std::vector<tid_t> second) {
137 static bool HasElement(const std::vector<tid_t> &vector, tid_t element)
    [all...]
  /src/sys/arch/atari/atari/
intr.c 73 * Establish an interrupt vector.
74 * - vector
75 * The vector numer the interrupt should be hooked on. It can either
76 * be an auto-vector or a user-vector.
87 * - This vector can't be shared
97 * When multiple interrupts are established on the same vector,
108 intr_establish(int vector, int type, int pri, hw_ifun_t ih_fun, void *ih_arg)
120 ih->ih_vector = vector;
123 * Do some validity checking on the 'vector' argument and determin
221 int vector, s; local in function:intr_disestablish
275 int vector; local in function:intr_dispatch
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_internal_interface_test.cc 15 #include <vector>
18 std::vector<char> buffer(17, 0xff);
21 EXPECT_EQ(std::vector<char>(buffer.size(), 0x00), buffer);
24 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf1), buffer);
27 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf2), buffer);
30 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf3), buffer);
33 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf5), buffer);
36 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf8), buffer);
  /src/sys/arch/ia64/ia64/
interrupt.c 76 interrupt(uint64_t vector, struct trapframe *tf)
93 * read the vector.
95 if (vector == 0) {
97 printf("ExtINT interrupt: vector=%u\n", (int)inta);
102 vector = (int)inta;
103 } else if (vector == 15)
106 if (vector == CLOCK_VECTOR) {/* clock interrupt */
137 } else if (vector == ipi_vector[IPI_AST]) {
140 } else if (vector == ipi_vector[IPI_HIGH_FP]) {
150 } else if (vector == ipi_vector[IPI_RENDEZVOUS])
224 u_int vector = (uintptr_t)arg; local in function:ia64_intr_eoi
235 u_int vector = (uintptr_t)arg; local in function:ia64_intr_mask
272 u_int vector; local in function:intr_establish
327 u_int vector = ih->ih_irq + IA64_HARDWARE_IRQ_BASE; local in function:intr_disestablish
    [all...]
trap.c 234 {IA64_ISR_VECTOR, "vector"},
254 printtrap(int vector, struct trapframe *tf, int isfatal, int user)
261 printf(" trap vector = 0x%x (%s)\n",
262 vector, ia64_vector_names[vector]);
350 trap_panic(int vector, struct trapframe *tf)
353 printtrap(vector, tf, 1, TRAPF_USERMODE(tf));
356 if (ia64_trap(vector, 0, tf)) return;
378 trap(int vector, struct trapframe *tf)
394 printtrap(vector, tf, 0, TRAPF_USERMODE(tf))
    [all...]
  /src/sys/arch/atari/isa/
isa_milan.c 57 #define ICU_OFFSET 0 /* Interrupt vector base */
76 icu[1] = ICU_OFFSET; /* starting at this vector index */
86 icu[1] = ICU_OFFSET + 8; /* starting at this vector index */
116 isa_callback(int vector)
121 iinfo_p = &milan_isa_iinfo[vector];
125 if (vector > 7) {
126 WICU(AD_8259_SLAVE, 0x60 | (vector & 7));
127 vector = IRQ_SLAVE;
129 WICU(AD_8259_MASTER, 0x60 | (vector & 7));
135 milan_isa_intr(int vector, int sr
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/test/Unit/
comparedf2_test.c 37 int test__cmpdf2(const struct TestVector *vector) {
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->a, vector->b) != vector->geReference)
    [all...]
comparesf2_test.c 37 int test__cmpsf2(const struct TestVector *vector) {
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->a, vector->b) != vector->geReference)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/
comparedf2_test.c 37 int test__cmpdf2(const struct TestVector *vector) {
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->a, vector->b) != vector->geReference)
    [all...]
comparesf2_test.c 37 int test__cmpsf2(const struct TestVector *vector) {
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->a, vector->b) != vector->geReference)
    [all...]
  /src/sys/arch/arc/arc/
c_isa.c 182 char vector; local in function:isabr_dti_intr_status
185 vector = isa_inb(IO_ICU1);
186 isa_vector = vector & 7;
187 if (vector > 0 || isa_vector == 2) {
189 vector = isa_inb(IO_ICU2);
190 if (vector > 0) {
194 isa_vector = (vector & 7) | 8;
  /src/lib/libc/arch/vax/sys/
execl.S 43 pushal 8(%ap) # Push pointer to argv vector
execlp.S 43 pushal 8(%ap) # Push pointer to argv vector
execle.S 45 pushal 8(%ap) # Push pointer to argv vector
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_clock_test.cc 40 ThreadClock vector(0); local in function:__tsan::TEST
42 ASSERT_EQ(vector.size(), 1U);
44 vector.acquire(&cache, &chunked);
45 ASSERT_EQ(vector.size(), 1U);
47 vector.release(&cache, &chunked);
48 ASSERT_EQ(vector.size(), 1U);
50 vector.acq_rel(&cache, &chunked);
51 ASSERT_EQ(vector.size(), 1U);
65 ThreadClock vector(0); local in function:__tsan::TEST
67 vector.set(&cache, i, i + 1)
115 ThreadClock vector(0); local in function:__tsan::TEST
129 ThreadClock vector(1); local in function:__tsan::TEST
179 ThreadClock vector(10); local in function:__tsan::TEST
208 ThreadClock vector(100); local in function:__tsan::TEST
250 ThreadClock vector(0); local in function:__tsan::TEST
    [all...]
  /src/sys/arch/vax/vax/
scb.c 48 static volatile int vector, ipl, gotintr; variable in typeref:typename:volatile int
77 * beginning, and that if the vector is zero it should call
99 vector = ((int) arg) & ~3;
103 printf("stray interrupt: vector 0x%x, ipl %d\n", vector, ipl);
120 vector = vec;
126 * Returns last vector/ipl referenced. Clears vector/ipl after reading.
134 *rvec = vector;
138 gotintr = vector = ipl = 0
    [all...]
  /src/sys/arch/cesfic/cesfic/
sic6351.c 70 sic_enable_int(int nr, int type, int icod, int level, int vector)
74 *(volatile int *)(sicbase + 0x300 + nr * 4) = vector;
  /src/sys/arch/alpha/alpha/
dec_kn20aa.c 135 dec_kn20aa_mcheck_handler(unsigned long mces, struct trapframe *framep, unsigned long vector, unsigned long param)
138 switch (vector) {
141 dec_kn20aa_mcheck(mces, vector, param, framep);
144 printf("KN20AA_MCHECK: unknown check vector 0x%lx\n", vector);
145 machine_check(mces, framep, vector, param);
dec_6600.c 203 dec_6600_mcheck(unsigned long vector, struct ev6_logout_area *la)
207 if (vector == ALPHA_SYS_ERROR || vector == ALPHA_PROC_ERROR)
210 switch (vector) {
228 t, c, vector, la->mchk_rev, la->mchk_code, la->la.la_flags);
258 unsigned long vector, unsigned long param)
268 machine_check(mces, framep, vector, param);
270 dec_6600_mcheck(vector, la);
272 switch (vector) {
280 machine_check(mces, framep, vector, param)
    [all...]
  /src/tests/lib/libc/hash/
t_sha2.c 56 const char *vector; member in struct:testvector
179 len = strlen(test256[i].vector);
182 memcpy(buf + j, test256[i].vector, len);
206 len = strlen(test384[i].vector);
209 memcpy(buf + j, test384[i].vector, len);
233 len = strlen(test512[i].vector);
236 memcpy(buf + j, test512[i].vector, len);

Completed in 19 milliseconds

1 2 3 4 5 6 7