Home
last modified time | relevance | path

Searched refs:block_start (Results 1 – 25 of 2846) sorted by relevance

12345678910>>...114

/dports/devel/libewf/libewf-20140812/libewf/
H A Dlibewf_empty_block.c98 uint8_t *block_start = NULL; in libewf_empty_block_test() local
124 block_start = (uint8_t *) block_buffer; in libewf_empty_block_test()
134 while( ( (intptr_t) block_start % sizeof( libewf_aligned_t ) ) != 0 ) in libewf_empty_block_test()
136 if( *block_start != *block_iterator ) in libewf_empty_block_test()
140 block_start += 1; in libewf_empty_block_test()
147 block_start, in libewf_empty_block_test()
148 &( block_start[ sizeof( libewf_aligned_t ) ] ), in libewf_empty_block_test()
153 block_iterator = &( block_start[ aligned_block_size ] ); in libewf_empty_block_test()
158 if( *block_start != *block_iterator ) in libewf_empty_block_test()
/dports/devel/R-cran-usethis/usethis/R/
H A Dblock.R1 block_append <- function(desc, value, path, block_start, block_end, argument
9 block_lines <- block_find(lines, block_start, block_end)
17 ui_code_block(c(block_prefix, block_start, value, block_end, block_suffix))
38 block_replace <- function(desc, value, path, block_start, block_end) { argument
41 block_lines <- block_find(lines, block_start, block_end)
48 ui_code_block(c(block_start, value, block_end))
71 block_show <- function(path, block_start, block_end) { argument
73 block <- block_find(lines, block_start, block_end)
77 block_find <- function(lines, block_start, block_end) { argument
83 start <- which(lines == block_start)
/dports/lang/v8/v8-9.6.180.12/src/handles/
H A Dpersistent-handles.cc27 for (Address* block_start : blocks_) { in ~PersistentHandles()
29 HandleScope::ZapRange(block_start, block_start + kHandleBlockSize); in ~PersistentHandles()
31 DeleteArray(block_start); in ~PersistentHandles()
68 blocks_.push_back(block_start); in AddBlock()
70 block_next_ = block_start; in AddBlock()
71 block_limit_ = block_start + kHandleBlockSize; in AddBlock()
74 ordered_blocks_.insert(block_start); in AddBlock()
90 Address* block_start = blocks_[i]; in Iterate() local
91 Address* block_end = block_start + kHandleBlockSize; in Iterate()
93 FullObjectSlot(block_start), in Iterate()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/handles/
H A Dpersistent-handles.cc27 for (Address* block_start : blocks_) { in ~PersistentHandles()
29 HandleScope::ZapRange(block_start, block_start + kHandleBlockSize); in ~PersistentHandles()
31 DeleteArray(block_start); in ~PersistentHandles()
68 blocks_.push_back(block_start); in AddBlock()
70 block_next_ = block_start; in AddBlock()
71 block_limit_ = block_start + kHandleBlockSize; in AddBlock()
74 ordered_blocks_.insert(block_start); in AddBlock()
90 Address* block_start = blocks_[i]; in Iterate() local
91 Address* block_end = block_start + kHandleBlockSize; in Iterate()
93 FullObjectSlot(block_start), in Iterate()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/layout/ng/geometry/
H A Dng_box_strut.h28 LayoutUnit block_start, in NGBoxStrut()
32 block_start(block_start), in NGBoxStrut()
44 LayoutUnit BlockSum() const { return block_start + block_end; } in BlockSum()
46 LogicalOffset StartOffset() const { return {inline_start, block_start}; } in StartOffset()
57 block_start += other.block_start;
71 block_start -= other.block_start;
85 std::tie(inline_start, inline_end, block_start, block_end);
93 LayoutUnit block_start; member
228 return NGPhysicalBoxStrut(block_start, direction_end, block_end, in ConvertToPhysical()
236 block_start); in ConvertToPhysical()
[all …]
H A Dng_border_edges.h16 unsigned block_start : 1; member
22 : block_start(true), line_right(true), block_end(true), line_left(true) {} in NGBorderEdges()
23 NGBorderEdges(bool block_start, in NGBorderEdges()
27 : block_start(block_start), in NGBorderEdges()
54 return (block_start ? kTop : 0) | (line_right ? kRight : 0) | in ToPhysical()
58 return (block_start ? kRight : 0) | (line_right ? kBottom : 0) | in ToPhysical()
61 return (block_start ? kLeft : 0) | (line_right ? kTop : 0) | in ToPhysical()
/dports/emulators/pcem/pcem_emulator-pcem-faf5d6423060/src/
H A Dintel_flash.c32 uint32_t block_start[4], block_end[4], block_len[4]; member
103 if ((addr >= flash->block_start[i]) && (addr <= flash->block_end[i])) in flash_write()
114 if ((addr & 0x1e000) != (flash->block_start[3] & 0x1e000)) in flash_write()
207 flash->block_start[BLOCK_MAIN] = 0x04000; /* MAIN BLOCK */ in intel_flash_init()
209 flash->block_start[BLOCK_DATA1] = 0x03000; /* DATA AREA 1 BLOCK */ in intel_flash_init()
211 flash->block_start[BLOCK_DATA2] = 0x04000; /* DATA AREA 2 BLOCK */ in intel_flash_init()
213 flash->block_start[BLOCK_BOOT] = 0x00000; /* BOOT BLOCK */ in intel_flash_init()
218 flash->block_start[BLOCK_MAIN] = 0x00000; /* MAIN BLOCK */ in intel_flash_init()
220 flash->block_start[BLOCK_DATA1] = 0x1c000; /* DATA AREA 1 BLOCK */ in intel_flash_init()
222 flash->block_start[BLOCK_DATA2] = 0x1d000; /* DATA AREA 2 BLOCK */ in intel_flash_init()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/layout/ng/geometry/
H A Dng_box_strut.h28 LayoutUnit block_start, in NGBoxStrut()
32 block_start(block_start), in NGBoxStrut()
44 LayoutUnit BlockSum() const { return block_start + block_end; } in BlockSum()
46 LogicalOffset StartOffset() const { return {inline_start, block_start}; } in StartOffset()
57 block_start += other.block_start;
71 block_start -= other.block_start;
85 std::tie(inline_start, inline_end, block_start, block_end);
93 LayoutUnit block_start; member
240 return NGPhysicalBoxStrut(block_start, direction_end, block_end, in ConvertToPhysical()
248 block_start); in ConvertToPhysical()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/btrfs/tests/
H A Dinode-tests.c265 if (em->block_start != EXTENT_MAP_HOLE) { in test_btrfs_get_extent()
404 disk_bytenr = em->block_start; in test_btrfs_get_extent()
456 if (em->block_start != disk_bytenr) { in test_btrfs_get_extent()
458 disk_bytenr, em->block_start); in test_btrfs_get_extent()
519 disk_bytenr = em->block_start; in test_btrfs_get_extent()
551 em->block_start); in test_btrfs_get_extent()
585 em->block_start); in test_btrfs_get_extent()
656 disk_bytenr = em->block_start; in test_btrfs_get_extent()
693 if (em->block_start != disk_bytenr) { in test_btrfs_get_extent()
695 disk_bytenr, em->block_start); in test_btrfs_get_extent()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/fs/btrfs/tests/
H A Dinode-tests.c265 if (em->block_start != EXTENT_MAP_HOLE) { in test_btrfs_get_extent()
404 disk_bytenr = em->block_start; in test_btrfs_get_extent()
456 if (em->block_start != disk_bytenr) { in test_btrfs_get_extent()
458 disk_bytenr, em->block_start); in test_btrfs_get_extent()
519 disk_bytenr = em->block_start; in test_btrfs_get_extent()
551 em->block_start); in test_btrfs_get_extent()
585 em->block_start); in test_btrfs_get_extent()
656 disk_bytenr = em->block_start; in test_btrfs_get_extent()
693 if (em->block_start != disk_bytenr) { in test_btrfs_get_extent()
695 disk_bytenr, em->block_start); in test_btrfs_get_extent()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/btrfs/tests/
H A Dinode-tests.c265 if (em->block_start != EXTENT_MAP_HOLE) { in test_btrfs_get_extent()
404 disk_bytenr = em->block_start; in test_btrfs_get_extent()
456 if (em->block_start != disk_bytenr) { in test_btrfs_get_extent()
458 disk_bytenr, em->block_start); in test_btrfs_get_extent()
519 disk_bytenr = em->block_start; in test_btrfs_get_extent()
551 em->block_start); in test_btrfs_get_extent()
585 em->block_start); in test_btrfs_get_extent()
656 disk_bytenr = em->block_start; in test_btrfs_get_extent()
693 if (em->block_start != disk_bytenr) { in test_btrfs_get_extent()
695 disk_bytenr, em->block_start); in test_btrfs_get_extent()
[all …]
/dports/graphics/grafx2/grafx2/src/
H A Dpalette.c914 if (block_start == block_end) { in Window_Histogram()
916 for (block_start=0; block_start!=255; block_start++) in Window_Histogram()
917 if (color_usage[block_start]) in Window_Histogram()
1113 byte block_start; in Button_Palette() local
1325 Set_clipboard_colors(block_end+1-block_start,working_palette + block_start); in Button_Palette()
2016 temp_color=block_start+(i % (block_end+1-block_start)); in Button_Palette()
2316 for (i=block_start; i < block_start + (block_end-block_start+1)/2;i++) in Button_Palette()
2414 begin = block_start; in Button_Palette()
2656 block_start--; in Button_Palette()
2678 block_start++; in Button_Palette()
[all …]
/dports/emulators/yuzu/yuzu-0b47f7a46/externals/mbedtls/tests/scripts/
H A Dcheck-doxy-blocks.pl32 my $block_start = 0;
34 $block_start = $. if $line =~ m/\/\*(?![*!])/;
35 $block_start = 0 if $line =~ m/\*\//;
36 if ($block_start and $line =~ m/$doxy_re/) {
37 print "$fname:$block_start: directive on line $.\n";
38 $block_start = 0; # report only one directive per block
/dports/security/mbedtls/mbedtls-mbedtls-2.16.12/tests/scripts/
H A Dcheck-doxy-blocks.pl74 my $block_start = 0;
76 $block_start = $. if $line =~ m/\/\*(?![*!])/;
77 $block_start = 0 if $line =~ m/\*\//;
78 if ($block_start and $line =~ m/$doxy_re/) {
79 print "$fname:$block_start: directive on line $.\n";
80 $block_start = 0; # report only one directive per block
/dports/emulators/qemu/qemu-6.2.0/roms/skiboot/libstb/crypto/mbedtls/tests/scripts/
H A Dcheck-doxy-blocks.pl32 my $block_start = 0;
34 $block_start = $. if $line =~ m/\/\*(?![*!])/;
35 $block_start = 0 if $line =~ m/\*\//;
36 if ($block_start and $line =~ m/$doxy_re/) {
37 print "$fname:$block_start: directive on line $.\n";
38 $block_start = 0; # report only one directive per block
/dports/games/0ad/0ad-0.0.23b-alpha/build/premake/premake5/contrib/mbedtls/tests/scripts/
H A Dcheck-doxy-blocks.pl28 my $block_start = 0;
30 $block_start = $. if $line =~ m/\/\*(?![*!])/;
31 $block_start = 0 if $line =~ m/\*\//;
32 if ($block_start and $line =~ m/$doxy_re/) {
33 print "$fname:$block_start: directive on line $.\n";
34 $block_start = 0; # report only one directive per block
/dports/devel/premake5/premake-5.0.0-alpha16-src/contrib/mbedtls/tests/scripts/
H A Dcheck-doxy-blocks.pl47 my $block_start = 0;
49 $block_start = $. if $line =~ m/\/\*(?![*!])/;
50 $block_start = 0 if $line =~ m/\*\//;
51 if ($block_start and $line =~ m/$doxy_re/) {
52 print "$fname:$block_start: directive on line $.\n";
53 $block_start = 0; # report only one directive per block
/dports/devel/radare2/radare2-5.1.1/libr/core/p/
H A Dcore_a2f.c14 ut64 block_start, block_end; in getCrossingBlock() local
25 block_start = sdb_atoi (ptr); in getCrossingBlock()
27 if (start == block_start) { // case 5 in getCrossingBlock()
35 return block_start; in getCrossingBlock()
39 if (nearest_start > block_start) { in getCrossingBlock()
40 nearest_start = block_start; in getCrossingBlock()
58 if (block_start == UT64_MAX) { in bbAdd()
60 } else if (block_start == from) { in bbAdd()
73 if (from > block_start) { in bbAdd()
82 to = block_start; in bbAdd()
[all …]
/dports/graphics/tgif/tgif-QPL-4.2.5/
H A Dscroll.c192 if (y < block_start) {
199 if (x < block_start) {
332 SetBBRec(&bbox, x_off+block_start, y_off, x_off+block_start+block_size,
757 int lty, block_start, block_h; in DragToInVSBar()
829 block_start = btn_y+btn_offset;
838 block_start;
883 if (block_start <= 0) {
888 new_y = block_start;
1091 int ltx, block_start, block_w; in DragToInHSBar()
1163 block_start = btn_x+btn_offset;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/layout/geometry/
H A Dbox_sides.h23 bool block_start = true;
29 LogicalBoxSides(bool block_start, in LogicalBoxSides()
33 : block_start(block_start), in LogicalBoxSides()
60 top = logical.block_start; in PhysicalBoxSides()
68 right = logical.block_start; in PhysicalBoxSides()
73 left = logical.block_start; in PhysicalBoxSides()
/dports/biology/gmap/gmap-2020-09-12/src/
H A Dcmetindex.c415 UINT2 block_start, block_end, j, npositions;
467 block_start = newoffsets[ii];
536 UINT2 block_start, block_end, j, npositions;
544 block_start = newoffsets[ii];
625 block_start = newoffsets[ii]; in sort_positions()
629 sort_8mers(&(positions8_high[block_start]),&(positions8_low[block_start]),npositions); in sort_positions()
686 sort_8mers(&(positions8_high[block_start]),&(positions8_low[block_start]),npositions); in sort_positions()
847 block_start = oldoffsets[ii]; in compute_ct()
850 if (block_end > block_start) { in compute_ct()
1018 block_start = oldoffsets[ii]; in compute_ga()
[all …]
/dports/lang/sbcl/sbcl-1.3.13/src/runtime/
H A Dos-common.c43 os_vm_address_t block_start; in os_zero() local
50 block_start = os_round_up_to_page(addr); in os_zero()
52 length -= block_start-addr; in os_zero()
55 if (block_start > addr) in os_zero()
56 bzero((char *)addr, block_start-addr); in os_zero()
58 bzero((char *)block_start+block_size, length-block_size); in os_zero()
64 os_invalidate(block_start, block_size); in os_zero()
65 addr = os_validate(block_start, block_size); in os_zero()
67 if (addr == NULL || addr != block_start) in os_zero()
69 block_start, in os_zero()
/dports/math/arb/arb-2.21.1/arb_mat/
H A Dmul_block.c39 slong block_start, in arb_mat_mid_addmul_block_fallback() argument
50 n = block_end - block_start; in arb_mat_mid_addmul_block_fallback()
89 slong block_start, in arb_mat_mid_addmul_block_prescaled() argument
105 n = block_end - block_start; in arb_mat_mid_addmul_block_prescaled()
186 if (block_start == 0) in arb_mat_mid_addmul_block_prescaled()
213 slong block_start, block_end, i, j, bot, top, max_height; in arb_mat_mul_block() local
348 block_start = 0; in arb_mat_mul_block()
349 while (block_start < N) in arb_mat_mul_block()
444 if (block_end - block_start < min_block_size) in arb_mat_mul_block()
449 block_start, block_end, prec); in arb_mat_mul_block()
[all …]
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/network/aci/
H A Daci_vlan_pool_encap_block.py251 block_start=dict(type='int', aliases=["start"]), # Not required for querying all objects
273 block_start = module.params['block_start']
281 if block_start is not None:
282 encap_start = 'vlan-{0}'.format(block_start)
291 for encap_id in block_end, block_start:
296 if block_end is not None and block_start is not None:
298 if block_start > block_end:
301 elif block_end is None and block_start is None:
/dports/x11/xlockmore/xlockmore-5.67/xlock/
H A Daligned_malloc.c30 void *block_start; in aligned_malloc() local
36 block_start = malloc(size); in aligned_malloc()
37 if(!block_start) in aligned_malloc()
39 *ptr = (void *)(((ptrdiff_t)block_start + sizeof(void *) + align1) & ~align1); in aligned_malloc()
40 ((void **)(*ptr))[-1] = block_start; in aligned_malloc()

12345678910>>...114