HomeSort by: relevance | last modified time | path
    Searched defs:sizes (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/sys/dev/raidframe/
rf_alloclist.h 44 int sizes[RF_POINTERS_PER_ALLOC_LIST_ELEMENT]; member in struct:RF_AllocListElem_s
rf_alloclist.h 44 int sizes[RF_POINTERS_PER_ALLOC_LIST_ELEMENT]; member in struct:RF_AllocListElem_s
  /src/tests/lib/libc/sys/
t_truncate.c 45 static const size_t sizes[] = { 8, 16, 512, 1024, 2048, 4094, 3000, 30 }; variable in typeref:typename:const size_t[]
62 for (i = 0; i < __arraycount(sizes); i++) {
66 ATF_REQUIRE(ftruncate(fd, sizes[i]) == 0);
69 (void)fprintf(stderr, "truncating to %zu bytes\n", sizes[i]);
71 if (sizes[i] != (size_t)st.st_size)
122 for (i = 0; i < __arraycount(sizes); i++) {
126 ATF_REQUIRE(truncate(path, sizes[i]) == 0);
129 (void)fprintf(stderr, "truncating to %zu bytes\n", sizes[i]);
131 if (sizes[i] != (size_t)st.st_size)
t_truncate.c 45 static const size_t sizes[] = { 8, 16, 512, 1024, 2048, 4094, 3000, 30 }; variable in typeref:typename:const size_t[]
62 for (i = 0; i < __arraycount(sizes); i++) {
66 ATF_REQUIRE(ftruncate(fd, sizes[i]) == 0);
69 (void)fprintf(stderr, "truncating to %zu bytes\n", sizes[i]);
71 if (sizes[i] != (size_t)st.st_size)
122 for (i = 0; i < __arraycount(sizes); i++) {
126 ATF_REQUIRE(truncate(path, sizes[i]) == 0);
129 (void)fprintf(stderr, "truncating to %zu bytes\n", sizes[i]);
131 if (sizes[i] != (size_t)st.st_size)
  /src/tests/net/in_cksum/
t_in_cksum.sh 29 sizes() { function
57 atf_set "descr" "Test in_cksum sizes aligned"
61 sizes 0
65 atf_set "descr" "Test in_cksum sizes unaligned"
69 sizes 1
t_in_cksum.sh 29 sizes() { function
57 atf_set "descr" "Test in_cksum sizes aligned"
61 sizes 0
65 atf_set "descr" "Test in_cksum sizes unaligned"
69 sizes 1
  /src/sys/arch/ia64/ia64/
sal.c 90 static int sizes[6] = { local in function:ia64_sal_init
178 p += sizes[*p];
sal.c 90 static int sizes[6] = { local in function:ia64_sal_init
178 p += sizes[*p];
  /src/libexec/talkd/
announce.c 101 int sizes[N_LINES]; local in function:print_mesg
112 sizes[i] = strlen(line_buf[i]);
113 max_size = max(max_size, sizes[i]);
119 sizes[i] = strlen(line_buf[i]);
120 max_size = max(max_size, sizes[i]);
127 sizes[i] = strlen(line_buf[i]);
128 max_size = max(max_size, sizes[i]);
132 sizes[i] = strlen(line_buf[i]);
133 max_size = max(max_size, sizes[i]);
136 sizes[i] = strlen(line_buf[i])
    [all...]
announce.c 101 int sizes[N_LINES]; local in function:print_mesg
112 sizes[i] = strlen(line_buf[i]);
113 max_size = max(max_size, sizes[i]);
119 sizes[i] = strlen(line_buf[i]);
120 max_size = max(max_size, sizes[i]);
127 sizes[i] = strlen(line_buf[i]);
128 max_size = max(max_size, sizes[i]);
132 sizes[i] = strlen(line_buf[i]);
133 max_size = max(max_size, sizes[i]);
136 sizes[i] = strlen(line_buf[i])
    [all...]
  /src/sys/external/bsd/drm2/drm/
drmfb.c 86 const struct drm_fb_helper_surface_size *const sizes = da->da_fb_sizes; local in function:drmfb_attach
106 prop_dictionary_set_uint32(dict, "width", sizes->surface_width);
107 prop_dictionary_set_uint32(dict, "height", sizes->surface_height);
108 prop_dictionary_set_uint8(dict, "depth", sizes->surface_bpp);
drmfb.c 86 const struct drm_fb_helper_surface_size *const sizes = da->da_fb_sizes; local in function:drmfb_attach
106 prop_dictionary_set_uint32(dict, "width", sizes->surface_width);
107 prop_dictionary_set_uint32(dict, "height", sizes->surface_height);
108 prop_dictionary_set_uint8(dict, "depth", sizes->surface_bpp);
  /src/tests/lib/libc/
t_cdb.c 139 size_t i, sizes[] = { 0, 16, 64, 1024, 2048 }; local in function:ATF_TC_BODY
140 for (i = 0; i < __arraycount(sizes); ++i) {
141 init_keys(sizes[i]);
142 write_database(sizes[i]);
143 check_database(sizes[i]);
t_cdb.c 139 size_t i, sizes[] = { 0, 16, 64, 1024, 2048 }; local in function:ATF_TC_BODY
140 for (i = 0; i < __arraycount(sizes); ++i) {
141 init_keys(sizes[i]);
142 write_database(sizes[i]);
143 check_database(sizes[i]);
  /src/sys/arch/ia64/stand/ia64/efi/
main.c 75 static int sizes[6] = { local in function:find_pal_proc
99 p += sizes[*p];
325 static int sizes[6] = { local in function:command_sal
383 p += sizes[*p];
main.c 75 static int sizes[6] = { local in function:find_pal_proc
99 p += sizes[*p];
325 static int sizes[6] = { local in function:command_sal
383 p += sizes[*p];
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_interface_test.cc 21 const size_t sizes[] = { 1, 30, 1<<30 }; local in function:TEST
23 EXPECT_EQ(sizes[i], __sanitizer_get_estimated_allocated_size(sizes[i]));
367 // Same here, but we run memset with small sizes.
397 std::vector<size_t> sizes; local in function:TEST
402 sizes.push_back(size);
409 EXPECT_EQ(sizes[idx], __sanitizer_get_allocated_size(pointers[idx]));
asan_interface_test.cc 21 const size_t sizes[] = { 1, 30, 1<<30 }; local in function:TEST
23 EXPECT_EQ(sizes[i], __sanitizer_get_estimated_allocated_size(sizes[i]));
367 // Same here, but we run memset with small sizes.
397 std::vector<size_t> sizes; local in function:TEST
402 sizes.push_back(size);
409 EXPECT_EQ(sizes[idx], __sanitizer_get_allocated_size(pointers[idx]));
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
i915_gem_object_blt.c 86 static const unsigned long sizes[] = { local in function:perf_fill_blt
94 for (i = 0; i < ARRAY_SIZE(sizes); i++) {
98 obj = i915_gem_object_create_internal(i915, sizes[i]);
166 static const unsigned long sizes[] = { local in function:perf_copy_blt
174 for (i = 0; i < ARRAY_SIZE(sizes); i++) {
178 src = i915_gem_object_create_internal(i915, sizes[i]);
182 dst = i915_gem_object_create_internal(i915, sizes[i]);
i915_gem_object_blt.c 86 static const unsigned long sizes[] = { local in function:perf_fill_blt
94 for (i = 0; i < ARRAY_SIZE(sizes); i++) {
98 obj = i915_gem_object_create_internal(i915, sizes[i]);
166 static const unsigned long sizes[] = { local in function:perf_copy_blt
174 for (i = 0; i < ARRAY_SIZE(sizes); i++) {
178 src = i915_gem_object_create_internal(i915, sizes[i]);
182 dst = i915_gem_object_create_internal(i915, sizes[i]);
i915_gem_mman.c 929 unsigned long sizes[] = { local in function:igt_mmap
936 for (i = 0; i < ARRAY_SIZE(sizes); i++) {
940 obj = i915_gem_object_create_region(mr, sizes[i], 0);
i915_gem_mman.c 929 unsigned long sizes[] = { local in function:igt_mmap
936 for (i = 0; i < ARRAY_SIZE(sizes); i++) {
940 obj = i915_gem_object_create_region(mr, sizes[i], 0);
  /src/sys/external/bsd/ipf/netinet/
ip_log.c 385 size_t sizes[2]; local in function:ipf_log_pkt
514 sizes[0] = sizeof(ipfl);
522 sizes[1] = hlen + mlen;
526 sizes[1] = hlen + mlen;
531 sizes[1] = hlen + mlen;
534 return ipf_log_items(softc, IPL_LOGIPF, fin, ptrs, sizes, types, 2);
ip_log.c 385 size_t sizes[2]; local in function:ipf_log_pkt
514 sizes[0] = sizeof(ipfl);
522 sizes[1] = hlen + mlen;
526 sizes[1] = hlen + mlen;
531 sizes[1] = hlen + mlen;
534 return ipf_log_items(softc, IPL_LOGIPF, fin, ptrs, sizes, types, 2);
  /src/tests/usr.bin/xlint/lint1/
decl.c 151 unsigned long sizes = variable in typeref:typename:unsigned long

Completed in 34 milliseconds

1 2 3