Home
last modified time | relevance | path

Searched refs:hole (Results 1 – 25 of 115) sorted by relevance

12345

/external/libdrm/amdgpu/
Damdgpu_vamgr.c60 struct amdgpu_bo_va_hole *hole, *tmp; in amdgpu_vamgr_deinit() local
61 LIST_FOR_EACH_ENTRY_SAFE(hole, tmp, &mgr->va_holes, list) { in amdgpu_vamgr_deinit()
62 list_del(&hole->list); in amdgpu_vamgr_deinit()
63 free(hole); in amdgpu_vamgr_deinit()
72 struct amdgpu_bo_va_hole *hole, *n; in amdgpu_vamgr_find_va() local
84 LIST_FOR_EACH_ENTRY_SAFE(hole, n, &mgr->va_holes, list) { in amdgpu_vamgr_find_va()
86 if(hole->offset > base_required || in amdgpu_vamgr_find_va()
87 (hole->offset + hole->size) < (base_required + size)) in amdgpu_vamgr_find_va()
89 waste = base_required - hole->offset; in amdgpu_vamgr_find_va()
92 offset = hole->offset; in amdgpu_vamgr_find_va()
[all …]
/external/mesa3d/src/gallium/winsys/radeon/drm/
Dradeon_drm_bo.c204 struct radeon_bo_va_hole *hole, *n; in radeon_bomgr_find_va() local
214 LIST_FOR_EACH_ENTRY_SAFE(hole, n, &rws->va_holes, list) { in radeon_bomgr_find_va()
215 offset = hole->offset; in radeon_bomgr_find_va()
219 if (offset >= (hole->offset + hole->size)) { in radeon_bomgr_find_va()
222 if (!waste && hole->size == size) { in radeon_bomgr_find_va()
223 offset = hole->offset; in radeon_bomgr_find_va()
224 list_del(&hole->list); in radeon_bomgr_find_va()
225 FREE(hole); in radeon_bomgr_find_va()
229 if ((hole->size - waste) > size) { in radeon_bomgr_find_va()
233 n->offset = hole->offset; in radeon_bomgr_find_va()
[all …]
/external/skqp/src/core/
DSkTSort.h126 T* hole = next; in SkTInsertionSort() local
128 *hole = std::move(*(hole - 1)); in SkTInsertionSort()
129 --hole; in SkTInsertionSort()
130 } while (left < hole && lessThan(insert, *(hole - 1))); in SkTInsertionSort()
131 *hole = std::move(insert); in SkTInsertionSort()
/external/skia/src/core/
DSkTSort.h126 T* hole = next; in SkTInsertionSort() local
128 *hole = std::move(*(hole - 1)); in SkTInsertionSort()
129 --hole; in SkTInsertionSort()
130 } while (left < hole && lessThan(insert, *(hole - 1))); in SkTInsertionSort()
131 *hole = std::move(insert); in SkTInsertionSort()
/external/python/cpython3/Lib/turtledemo/
Dsorting_animate.py87 hole = i
88 while hole > 0 and shelf[i].size < shelf[hole - 1].size:
89 hole = hole - 1
90 shelf.insert(hole, shelf.pop(i))
/external/walt/hardware/
DWALT_bom_r07.tsv11 D1, D2 2 Photodiode Thru-hole 2-DIP (5.4mm), polarized Vishay / OSRAM (either) BPW34
12 J1 1 Audio jack 3.5 mm, TRRS 4 conductors Thru-hole Audio connector, non standard CUI Inc. SJ-43514
13 HEADERS4U1 2 Female headers 2.54mm, 14 pins Thru-hole Generic Generic
14 P1 1 Male straight headers 2.54mm, 6 pins Thru-hole Generic Generic
DWALT_bom_r09.tsv11 D1, D2 2 Photodiode Thru-hole 2-DIP (5.4mm), polarized Vishay / OSRAM (either) BPW34
12 J1 1 Audio jack 3.5 mm, TRRS 4 conductors Thru-hole Audio connector, non standard CUI Inc. SJ-43514
13 HEADERS4U1 2 Female headers 2.54mm, 14 pins Thru-hole Generic Generic
14 P1 1 Male straight headers 2.54mm, 6 pins Thru-hole Generic Generic
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dstreamout_jit.h50 bool hole; member
89 if (stream.decl[i].hole != other.stream.decl[i].hole) return false;
Dstreamout_jit.cpp142 if (!decl.hole) in buildDecl()
/external/e2fsprogs/tests/f_holedir4/
Dname1 bigalloc directory with hole and misaligned extent after hole
/external/autotest/client/site_tests/network_FirewallHolePunch/
Dcontrol7 PURPOSE = "Verifies the Chrome applications can punch a hole in the firewall"
9 This test will fail if a Chrome application is unable to punch a hole in the
/external/squashfs-tools/squashfs-tools/
Dunsquashfs.c880 int write_block(int file_fd, char *buffer, int size, long long hole, int sparse) in write_block() argument
882 off_t off = hole; in write_block()
884 if(hole) { in write_block()
900 int blocks = (hole + block_size -1) / block_size; in write_block()
902 for(i = 0; i < blocks; i++, hole -= avail_bytes) { in write_block()
903 avail_bytes = hole > block_size ? block_size : in write_block()
904 hole; in write_block()
2007 long long hole = 0; in writer() local
2031 hole += block->size; in writer()
2045 block->offset, block->size, hole, file->sparse); in writer()
[all …]
/external/syslinux/utils/
Disohybrid.c809 int hole = 0; in initialise_gpt() local
814 hole = (apm_parts * 4) + 2; in initialise_gpt()
827 header->firstUsableLBA = lendian_64(gptsize + hole); in initialise_gpt()
831 header->partitionEntriesLBA = lendian_64(0x02 + hole); in initialise_gpt()
839 gpt += sizeof(struct gpt_header) + hole * 512; in initialise_gpt()
/external/e2fsprogs/misc/
Dcreate_inode.c462 off_t data = 0, hole; in try_lseek_copy() local
474 hole = lseek(fd, data, SEEK_HOLE); in try_lseek_copy()
475 if (hole < 0) in try_lseek_copy()
479 hole_blk = (hole + (fs->blocksize - 1)) & ~(fs->blocksize - 1); in try_lseek_copy()
485 data = hole; in try_lseek_copy()
/external/mesa3d/src/gallium/drivers/swr/
Dswr_draw.cpp113 state.stream.decl[num].hole = true; in swr_draw_vbo()
126 state.stream.decl[num].hole = false; in swr_draw_vbo()
/external/fio/examples/
Dfalloc.fio24 [punch hole-fuzzer]
/external/walt/hardware/kicad/walt_footprints.pretty/
DPin_Header_Straight_1x05_small_pads.kicad_mod2 (descr "Through hole pin header")
DPin_Header_Straight_1x06.kicad_mod2 (descr "Through hole pin header")
/external/iproute2/tc/
Df_flower.c933 bool hole = false; in __mask_bits() local
940 if (hole) in __mask_bits()
944 hole = true; in __mask_bits()
/external/libcap/doc/
Dcapability.notes43 for a potential attacker to exploit a hole in a daemon of this
/external/llvm/test/CodeGen/Thumb2/
Daligned-spill.ll71 ; Spill 7 d-registers, leave a hole.
/external/python/cpython2/Doc/library/
Dpipes.rst54 :func:`quote` lets you plug the security hole::
/external/valgrind/
Ddarwin9.supp119 macos-vsyslog-hole
/external/llvm/test/CodeGen/X86/
Dload-slice.ll99 ; next to each other in memory. Here we have a hole with bytes #4-5.
/external/libcxx/include/
D__functional_03500 // deleted overloads close possible hole in the type system
776 // deleted overloads close possible hole in the type system
1052 // deleted overloads close possible hole in the type system
1327 // deleted overloads close possible hole in the type system

12345