Home
last modified time | relevance | path

Searched refs:sizes (Results 1 – 25 of 120) sorted by relevance

12345

/dragonfly/contrib/gcc-8.0/libgomp/
H A Doacc-parallel.c198 size_t mapnum, void **hostaddrs, size_t *sizes, in GOACC_parallel() argument
333 acc_create (hostaddrs[i], sizes[i]); in GOACC_enter_exit_data()
336 acc_present_or_copyin (hostaddrs[i], sizes[i]); in GOACC_enter_exit_data()
339 acc_present_or_copyin (hostaddrs[i], sizes[i]); in GOACC_enter_exit_data()
375 acc_delete (hostaddrs[i], sizes[i]); in GOACC_enter_exit_data()
378 acc_copyout (hostaddrs[i], sizes[i]); in GOACC_enter_exit_data()
461 acc_update_device (hostaddrs[i], sizes[i]); in GOACC_update()
465 acc_update_self (hostaddrs[i], sizes[i]); in GOACC_update()
534 if (!acc_is_present (hostaddrs[i], sizes[i])) in GOACC_declare()
552 if (!acc_is_present (hostaddrs[i], sizes[i])) in GOACC_declare()
[all …]
H A Dtarget.c424 if (sizes[i] == 0) in gomp_map_fields_existing()
570 + sizes[last]; in gomp_map_vars()
591 sizes[i]); in gomp_map_vars()
752 len = sizes[i]; in gomp_map_vars()
764 last = i + sizes[i]; in gomp_map_vars()
767 + sizes[last]; in gomp_map_vars()
1104 if (sizes[i]) in gomp_update()
1508 *tgt_size += sizes[i]; in calculate_firstprivate_requirements()
2018 gomp_map_vars (devicep, sizes[i] + 1, &hostaddrs[i], NULL, &sizes[i], in GOMP_target_enter_exit_data()
2020 i += sizes[i]; in GOMP_target_enter_exit_data()
[all …]
H A Doacc-mem.c309 size_t sizes = s; in acc_map_data() local
348 tgt = gomp_map_vars (acc_dev, mapnum, &hostaddrs, &devaddrs, &sizes, in acc_map_data()
655 gomp_acc_insert_pointer (size_t mapnum, void **hostaddrs, size_t *sizes, in gomp_acc_insert_pointer() argument
664 NULL, sizes, kinds, true, GOMP_MAP_VARS_OPENACC); in gomp_acc_insert_pointer()
H A Dtask.c596 size_t *sizes, unsigned short *kinds, in gomp_create_target_task() argument
635 tgt_size += sizes[i]; in gomp_create_target_task()
659 ttask->sizes = (size_t *) &ttask->hostaddrs[mapnum]; in gomp_create_target_task()
660 memcpy (ttask->sizes, sizes, mapnum * sizeof (size_t)); in gomp_create_target_task()
661 ttask->kinds = (unsigned short *) &ttask->sizes[mapnum]; in gomp_create_target_task()
676 memcpy (tgt + tgt_size, hostaddrs[i], sizes[i]); in gomp_create_target_task()
678 tgt_size = tgt_size + sizes[i]; in gomp_create_target_task()
/dragonfly/libexec/talkd/
H A Dannounce.c95 int sizes[N_LINES]; in print_mesg() local
106 sizes[i] = strlen(line_buf[i]); in print_mesg()
107 max_size = max(max_size, sizes[i]); in print_mesg()
114 sizes[i] = strlen(line_buf[i]); in print_mesg()
115 max_size = max(max_size, sizes[i]); in print_mesg()
122 sizes[i] = strlen(line_buf[i]); in print_mesg()
123 max_size = max(max_size, sizes[i]); in print_mesg()
127 sizes[i] = strlen(line_buf[i]); in print_mesg()
128 max_size = max(max_size, sizes[i]); in print_mesg()
131 sizes[i] = strlen(line_buf[i]); in print_mesg()
[all …]
/dragonfly/sys/dev/drm/i915/
H A Dintel_fbdev.c130 if (sizes->surface_bpp == 24) in intelfb_alloc()
131 sizes->surface_bpp = 32; in intelfb_alloc()
133 mode_cmd.width = sizes->surface_width; in intelfb_alloc()
134 mode_cmd.height = sizes->surface_height; in intelfb_alloc()
139 sizes->surface_depth); in intelfb_alloc()
198 sizes->fb_width, sizes->fb_height); in intelfb_create()
204 ret = intelfb_alloc(helper, sizes); in intelfb_create()
243 info->width = sizes->fb_width; in intelfb_create()
244 info->height = sizes->fb_height; in intelfb_create()
246 info->depth = sizes->surface_bpp; in intelfb_create()
[all …]
/dragonfly/sys/dev/drm/amd/amdgpu/
H A Damdgpu_fb.c206 struct drm_fb_helper_surface_size *sizes) in amdgpufb_create() argument
218 mode_cmd.width = sizes->surface_width; in amdgpufb_create()
219 mode_cmd.height = sizes->surface_height; in amdgpufb_create()
221 if (sizes->surface_bpp == 24) in amdgpufb_create()
222 sizes->surface_bpp = 32; in amdgpufb_create()
224 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in amdgpufb_create()
225 sizes->surface_depth); in amdgpufb_create()
260 info->width = sizes->fb_width; in amdgpufb_create()
261 info->height = sizes->fb_height; in amdgpufb_create()
263 info->depth = sizes->surface_bpp; in amdgpufb_create()
[all …]
/dragonfly/sys/dev/drm/radeon/
H A Dradeon_fb.c217 struct drm_fb_helper_surface_size *sizes) in radeonfb_create() argument
230 mode_cmd.width = sizes->surface_width; in radeonfb_create()
231 mode_cmd.height = sizes->surface_height; in radeonfb_create()
234 if ((sizes->surface_bpp == 24) && ASIC_IS_AVIVO(rdev)) in radeonfb_create()
235 sizes->surface_bpp = 32; in radeonfb_create()
237 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in radeonfb_create()
238 sizes->surface_depth); in radeonfb_create()
271 info->width = sizes->fb_width; in radeonfb_create()
272 info->height = sizes->fb_height; in radeonfb_create()
274 info->depth = sizes->surface_bpp; in radeonfb_create()
[all …]
/dragonfly/sys/dev/drm/
H A Ddrm_gem_framebuffer_helper.c305 struct drm_fb_helper_surface_size *sizes, in drm_gem_fbdev_fb_create() argument
311 mode_cmd.width = sizes->surface_width; in drm_gem_fbdev_fb_create()
312 mode_cmd.height = sizes->surface_height; in drm_gem_fbdev_fb_create()
313 mode_cmd.pitches[0] = sizes->surface_width * in drm_gem_fbdev_fb_create()
314 DIV_ROUND_UP(sizes->surface_bpp, 8); in drm_gem_fbdev_fb_create()
318 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in drm_gem_fbdev_fb_create()
319 sizes->surface_depth); in drm_gem_fbdev_fb_create()
H A Ddrm_fb_helper.c1765 sizes.surface_depth = 24; in drm_fb_helper_single_fb_probe()
1766 sizes.surface_bpp = 32; in drm_fb_helper_single_fb_probe()
1767 sizes.fb_width = (u32)-1; in drm_fb_helper_single_fb_probe()
1768 sizes.fb_height = (u32)-1; in drm_fb_helper_single_fb_probe()
1772 sizes.surface_depth = sizes.surface_bpp = preferred_bpp; in drm_fb_helper_single_fb_probe()
1784 sizes.surface_depth = sizes.surface_bpp = 8; in drm_fb_helper_single_fb_probe()
1791 sizes.surface_depth = sizes.surface_bpp = 16; in drm_fb_helper_single_fb_probe()
1794 sizes.surface_depth = sizes.surface_bpp = 24; in drm_fb_helper_single_fb_probe()
1845 sizes.fb_width = min_t(u32, desired_mode->hdisplay + x, sizes.fb_width); in drm_fb_helper_single_fb_probe()
1847 sizes.fb_height = min_t(u32, desired_mode->vdisplay + y, sizes.fb_height); in drm_fb_helper_single_fb_probe()
[all …]
/dragonfly/contrib/gmp/mpn/generic/
H A Drootrem.c129 unsigned long sizes[GMP_NUMB_BITS + 1]; in mpn_rootrem_internal() local
200 sizes[ni] = b; in mpn_rootrem_internal()
209 if (b >= sizes[ni]) in mpn_rootrem_internal()
210 b = sizes[ni] - 1; /* add just one bit at a time */ in mpn_rootrem_internal()
213 sizes[ni] = 0; in mpn_rootrem_internal()
231 b = sizes[i - 1] - sizes[i]; /* number of bits to compute in that in mpn_rootrem_internal()
H A Dbinvert.c64 mp_size_t sizes[NPOWS], *sizp; in mpn_binvert() local
69 sizp = sizes; in mpn_binvert()
H A Dinvertappr.c162 mp_size_t sizes[NPOWS], *sizp; in mpn_ni_invertappr() local
175 sizp = sizes; in mpn_ni_invertappr()
273 if (sizp == sizes) { /* Get out of the cycle */ in mpn_ni_invertappr()
/dragonfly/tools/tools/crypto/
H A Dcryptotest.c519 int sizes[128], nsizes = 0; in main() local
572 if (nsizes < N(sizes)) { in main()
573 sizes[nsizes++] = s; in main()
581 sizes[nsizes++] = alg->blocksize; in main()
583 sizes[nsizes++] = 8; in main()
585 while (sizes[nsizes-1] < 8*1024) { in main()
586 sizes[nsizes] = sizes[nsizes-1]<<1; in main()
597 runtests(alg, count, sizes[j], cmd, maxthreads, profile); in main()
603 runtests(alg, count, sizes[i], cmd, maxthreads, profile); in main()
H A DREADME14 algorithms over a variety of buffer sizes. The 1024 says to do
16 more buffer sizes to use in doing tests.
/dragonfly/usr.sbin/vidcontrol/
H A Dvidcontrol.c369 } sizes[] = {{8, 16, PIO_FONT8x16}, in load_font() local
393 for (i = 0; sizes[i].w != 0; i++) { in load_font()
394 if (sizes[i].w == w && sizes[i].h == h) { in load_font()
395 size = DATASIZE(sizes[i]); in load_font()
396 io = sizes[i].io; in load_font()
397 font_height = sizes[i].h; in load_font()
412 size = DATASIZE(sizes[0]); in load_font()
420 for (i = 0; sizes[i].w != 0; i++) { in load_font()
421 if (DATASIZE(sizes[i]) == dsize[j]) { in load_font()
423 io = sizes[i].io; in load_font()
[all …]
/dragonfly/contrib/gdb-7/gdb/
H A Dbcache.c139 static unsigned long sizes[] = { in expand_hash_table() local
156 for (i = 0; i < (sizeof (sizes) / sizeof (sizes[0])); i++) in expand_hash_table()
157 if (sizes[i] > bcache->num_buckets) in expand_hash_table()
159 new_num_buckets = sizes[i]; in expand_hash_table()
/dragonfly/contrib/elftoolchain/libelf/
H A Dlibelf_fsize.m436 * Create an array of file sizes from the elf_type definitions
65 * FSZ{32,64} define the sizes of 32 and 64 bit file structures respectively.
87 * sizes.
94 * compute an expression that adds up the sizes of the structure's
/dragonfly/contrib/gcc-4.7/gcc/
H A Dcfgloop.c1311 unsigned *sizes, i, j; in verify_loop_structure() local
1322 sizes = XCNEWVEC (unsigned, num); in verify_loop_structure()
1323 sizes[0] = 2; in verify_loop_structure()
1327 sizes[loop->num]++; in verify_loop_structure()
1333 if (loop->num_nodes != sizes[i]) in verify_loop_structure()
1336 i, sizes[i], loop->num_nodes); in verify_loop_structure()
1500 memset (sizes, 0, sizeof (unsigned) * num); in verify_loop_structure()
1528 sizes[loop->num]++; in verify_loop_structure()
1551 if (eloops != sizes[loop->num]) in verify_loop_structure()
1554 eloops, loop->num, sizes[loop->num]); in verify_loop_structure()
[all …]
/dragonfly/contrib/xz/src/liblzma/common/
H A Dindex_hash.c135 const lzma_vli sizes[2] = { unpadded_size, uncompressed_size }; in hash_append() local
137 (const uint8_t *)(sizes), sizeof(sizes)); in hash_append()
/dragonfly/contrib/gcc-8.0/gcc/
H A Domp-general.c432 auto_vector_sizes sizes; in omp_max_vf() local
433 targetm.vectorize.autovectorize_vector_sizes (&sizes); in omp_max_vf()
434 if (!sizes.is_empty ()) in omp_max_vf()
437 for (unsigned int i = 0; i < sizes.length (); ++i) in omp_max_vf()
438 vf = ordered_max (vf, sizes[i]); in omp_max_vf()
/dragonfly/usr.bin/man/
H A Dman.sh636 local sizes
646 if { sizes=$($STTY size 0>&3 2>/dev/null); } 3>&1; then
647 set -- $sizes
/dragonfly/sys/dev/drm/include/drm/
H A Ddrm_gem_framebuffer_helper.h36 struct drm_fb_helper_surface_size *sizes,
/dragonfly/sys/contrib/dev/acpica/
H A Dchanges.txt3243 Current Release: (Note: build changes increased sizes)
6190 sizes.
13631 Current Release: (Same sizes)
15543 sizes are shown below. These are the code and data sizes for the
15618 sizes are shown below. These are the code and data sizes for the
15677 sizes are shown below. These are the code and data sizes for the
15731 sizes are shown below. These are the code and data sizes for the
15850 sizes are shown below. These are the code and data sizes for the
17221 below. These are the code and data sizes for the acpica.lib
18152 the code and data sizes for the acpica.lib produced by the
[all …]
/dragonfly/etc/etc.x86_64/
H A Ddisktab24 # p[a-h] partition sizes in sectors
25 # b[a-h] partition block sizes in bytes
26 # f[a-h] partition fragment sizes in bytes

12345