HomeSort by: relevance | last modified time | path
    Searched defs:vectors (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/test/Unit/
comparedf2_test.c 145 static const struct TestVector vectors[] = { variable in typeref:struct:TestVector
473 const int numVectors = sizeof vectors / sizeof vectors[0];
476 if (test__cmpdf2(&vectors[i])) return 1;
comparesf2_test.c 145 static const struct TestVector vectors[] = { variable in typeref:struct:TestVector
473 const int numVectors = sizeof vectors / sizeof vectors[0];
476 if (test__cmpsf2(&vectors[i])) return 1;
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/
comparedf2_test.c 145 static const struct TestVector vectors[] = { variable in typeref:struct:TestVector
473 const int numVectors = sizeof vectors / sizeof vectors[0];
476 if (test__cmpdf2(&vectors[i])) return 1;
comparesf2_test.c 145 static const struct TestVector vectors[] = { variable in typeref:struct:TestVector
473 const int numVectors = sizeof vectors / sizeof vectors[0];
476 if (test__cmpsf2(&vectors[i])) return 1;
  /src/sys/arch/arm/pci/
pci_msi_machdep.c 84 pci_intr_handle_t *vectors; local
94 vectors = msi->msi_alloc(msi, count, pa, exact);
95 if (vectors == NULL)
98 *ihps = vectors;
106 pci_intr_handle_t *vectors; local
116 vectors = msi->msix_alloc(msi, table_indexes, count, pa, exact);
117 if (vectors == NULL)
120 *ihps = vectors;
  /src/external/mit/expat/dist/lib/
siphash.h 290 static const unsigned char vectors[64][8] = { local
368 if (siphash24(in, i, &k) != SIP_U8TO64_LE(vectors[i]))
  /src/sys/arch/arm/cortex/
gic_v2m.c 233 pci_intr_handle_t *vectors; local
253 vectors = kmem_alloc(sizeof(*vectors) * *count, KM_SLEEP);
256 vectors[n] = ARM_PCI_INTR_MSI |
264 return vectors;
272 pci_intr_handle_t *vectors; local
313 vectors = kmem_alloc(sizeof(*vectors) * *count, KM_SLEEP);
317 vectors[msix_vec] = ARM_PCI_INTR_MSIX |
327 return vectors;
    [all...]
gicv3_its.c 466 u_int vectors; local
469 vectors = MAX(2, count);
470 while (!powerof2(vectors))
471 vectors++;
652 pci_intr_handle_t *vectors; local
670 vectors = kmem_alloc(sizeof(*vectors) * *count, KM_SLEEP);
677 vectors[n] = ARM_PCI_INTR_MSI |
703 kmem_free(vectors, sizeof(*vectors) * *count)
717 pci_intr_handle_t *vectors; local
    [all...]
  /src/sys/arch/x86/pci/
pci_msi_machdep.c 96 pci_intr_handle_t *vectors, pih; local
101 vectors = kmem_zalloc(sizeof(vectors[0]) * (*count), KM_SLEEP);
119 kmem_free(vectors, sizeof(vectors[0]) * (*count));
123 vectors[i] = pih;
127 return vectors;
157 pci_intr_handle_t *vectors; local
178 vectors = NULL;
180 vectors = pci_msi_alloc_vectors(msi_pic, NULL, count)
255 pci_intr_handle_t *vectors; local
    [all...]
  /src/sys/arch/arm/arm32/
arm32_machdep.c 161 * relocate the vectors.
193 unsigned int *vectors = (int *) va; local
194 unsigned int *vectors_data = vectors + (page0_data - page0);
198 * Loop through the vectors we're taking over, and copy the
206 vectors[vec] = page0[vec];
210 /* Now sync the vectors. */
  /src/sys/arch/arm/apple/
apple_pcie.c 581 pci_intr_handle_t *vectors; local
604 vectors = kmem_alloc(sizeof(*vectors) * *count, KM_SLEEP);
607 vectors[n] = ARM_PCI_INTR_MSI |
615 return vectors;
623 pci_intr_handle_t *vectors; local
663 vectors = kmem_alloc(sizeof(*vectors) * *count, KM_SLEEP);
667 vectors[msix_vec] = ARM_PCI_INTR_MSIX |
677 return vectors;
    [all...]
  /src/sys/arch/powerpc/booke/pci/
pq3pci.c 1273 pci_intr_handle_t *vectors; local
1289 const size_t alloc_size = sizeof(*vectors) * count;
1290 vectors = kmem_zalloc(alloc_size, KM_SLEEP);
1296 msih = pq3pci_msi_claim(vectors[j]);
1300 kmem_free(vectors, alloc_size);
1303 vectors[i] = handle;
1310 *ihps = vectors;
  /src/external/bsd/wpa/dist/src/crypto/
crypto_module_tests.c 156 /* OMAC1 AES-128 test vectors from
356 } vectors[] = { local
387 for (i = 0; i < ARRAY_SIZE(vectors); i++) {
388 struct cbc_test_vector *tv = &vectors[i];
424 } vectors[] = { local
477 for (i = 0; i < ARRAY_SIZE(vectors); i++) {
478 struct ecb_test_vector *tv = &vectors[i];
752 /* CTR-AES*.Encrypt test vectors from NIST SP 800-38a */
  /src/external/gpl3/gcc.old/dist/libgomp/plugin/
plugin-nvptx.c 848 int vectors = 0; local
873 if (vectors == 0)
874 vectors = warp_size;
879 ? vectors
895 case GOMP_DIM_VECTOR: dims[i] = vectors; break;
938 " gangs=%u, workers=%u, vectors=%u\n",
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerMatrixIntrinsics.cpp 94 // assuming \p Stride elements between start two consecutive vectors.
97 // vectors and \p NumElements must be set to the number of elements in a column
165 /// 2.1. Get column vectors for each argument. If we already lowered the
166 /// definition of an argument, use the produced column vectors directly.
168 /// a set of column vectors,
170 /// yields a set of column vectors containing result matrix. Note that we
207 /// Wrapper class representing a matrix as a set of vectors, either in row or
208 /// column major layout. All vectors must have the same vector type.
210 SmallVector<Value *, 16> Vectors;
218 : Vectors(),
284 iterator_range<SmallVector<Value *, 8>::iterator> vectors() { function in class:__anon5471::LowerMatrixIntrinsics::MatrixTy
    [all...]
  /src/external/gpl3/gcc/dist/libgomp/plugin/
plugin-nvptx.c 865 int vectors = 0; local
890 if (vectors == 0)
891 vectors = warp_size;
896 ? vectors
912 case GOMP_DIM_VECTOR: dims[i] = vectors; break;
955 " gangs=%u, workers=%u, vectors=%u\n",
  /src/sys/external/bsd/drm/dist/shared-core/
radeon_drm.h 195 } vectors; member in union:__anon4233
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
radeon_drm.h 203 } vectors; member in union:__anon5959

Completed in 44 milliseconds