/src/tests/usr.bin/xlint/lint1/ |
msg_321.c | 8 int vector[3] = { variable in typeref:typename:int[3]
|
msg_321.c | 8 int vector[3] = { variable in typeref:typename:int[3]
|
/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;
|
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/sys/arch/m68k/fpsp/ |
fpsp.h | 241 EXC_VEC equ 10 ;exception frame vector (format+vector#) variable in typeref:typename:exception frame
|
fpsp.h | 241 EXC_VEC equ 10 ;exception frame vector (format+vector#) variable in typeref:typename:exception frame
|
/src/sys/arch/mvme68k/dev/ |
zs_pcctwo.c | 112 static int vector = MCCHIPV_ZS0; local in function:zsc_pcctwo_attach 128 zs_config(zsc, &zs, vector + PCCTWO_VECBASE, PCLK_162); 136 pcctwointr_establish(vector++, zshard_unshared, zs_level, zsc, NULL);
|
zs_pcctwo.c | 112 static int vector = MCCHIPV_ZS0; local in function:zsc_pcctwo_attach 128 zs_config(zsc, &zs, vector + PCCTWO_VECBASE, PCLK_162); 136 pcctwointr_establish(vector++, zshard_unshared, zs_level, zsc, NULL);
|
/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...] |
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/tests/lib/libc/stdlib/ |
t_mi_vector_hash.c | 49 const char *vector; member in struct:testvector 80 len = strlen(testv[i].vector); 81 strcpy(buf + j, testv[i].vector);
|
t_mi_vector_hash.c | 49 const char *vector; member in struct:testvector 80 len = strlen(testv[i].vector); 81 strcpy(buf + j, testv[i].vector);
|
/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...] |
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/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);
|
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);
|
/src/sys/arch/vax/boot/boot/ |
autoconf.c | 244 static int vector, ipl; local in function:scb_stray 247 vector = (int) arg; 248 printf("stray interrupt: vector 0x%x, ipl %d\n", vector, ipl);
|
autoconf.c | 244 static int vector, ipl; local in function:scb_stray 247 vector = (int) arg; 248 printf("stray interrupt: vector 0x%x, ipl %d\n", vector, ipl);
|
/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...] |
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...] |
/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...] |
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/arch/arc/jazz/ |
jazzio.c | 217 unsigned int vector; local in function:jazzio_intr 220 while ((vector = inb(jazzio_conf->jc_iointr_status_reg)) != 0) { 221 jirp = &jazzio_intrtab[(vector >> 2) - 1];
|
/src/sys/arch/x68k/dev/ |
powsw.c | 105 int vector; /* interrupt vector */ member in struct:__anon5df274c70108 152 if (intio_intr_establish(desc->vector, xname, powsw_intr, sc) < 0)
|
/src/sys/arch/x86/isa/ |
isa_machdep.c | 114 typedef void (vector)(void); typedef in typeref:typename:void ()(void) 115 extern vector *IDTVEC(intr)[];
|