Home
last modified time | relevance | path

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

123456

/external/libdrm/amdgpu/
Damdgpu_vamgr.c64 struct amdgpu_bo_va_hole *hole, *tmp; in amdgpu_vamgr_deinit() local
65 LIST_FOR_EACH_ENTRY_SAFE(hole, tmp, &mgr->va_holes, list) { in amdgpu_vamgr_deinit()
66 list_del(&hole->list); in amdgpu_vamgr_deinit()
67 free(hole); in amdgpu_vamgr_deinit()
76 struct amdgpu_bo_va_hole *hole, *n; in amdgpu_vamgr_find_va() local
87 LIST_FOR_EACH_ENTRY_SAFE_REV(hole, n, &mgr->va_holes, list) { in amdgpu_vamgr_find_va()
89 if (hole->offset > base_required || in amdgpu_vamgr_find_va()
90 (hole->offset + hole->size) < (base_required + size)) in amdgpu_vamgr_find_va()
92 waste = base_required - hole->offset; in amdgpu_vamgr_find_va()
95 offset = hole->offset; in amdgpu_vamgr_find_va()
[all …]
/external/libchrome/base/task/sequence_manager/
Dintrusive_heap.h153 void FillHole(size_t hole, T&& element) { in FillHole() argument
154 DCHECK_GT(hole, 0u); in FillHole()
155 DCHECK_LE(hole, size_); in FillHole()
156 nodes_[hole] = std::move(element); in FillHole()
157 nodes_[hole].SetHeapHandle(HeapHandle(hole)); in FillHole()
166 void MoveHoleUpAndFillWithElement(size_t hole, T&& element) { in MoveHoleUpAndFillWithElement() argument
167 DCHECK_GT(hole, 0u); in MoveHoleUpAndFillWithElement()
168 DCHECK_LE(hole, size_); in MoveHoleUpAndFillWithElement()
169 while (hole >= 2u) { in MoveHoleUpAndFillWithElement()
170 size_t parent_pos = hole / 2; in MoveHoleUpAndFillWithElement()
[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.h129 T* hole = next; in SkTInsertionSort() local
131 *hole = std::move(*(hole - 1)); in SkTInsertionSort()
132 --hole; in SkTInsertionSort()
133 } while (left < hole && lessThan(insert, *(hole - 1))); in SkTInsertionSort()
134 *hole = std::move(insert); in SkTInsertionSort()
/external/skia/src/core/
DSkTSort.h129 T* hole = next; in SkTInsertionSort() local
131 *hole = std::move(*(hole - 1)); in SkTInsertionSort()
132 --hole; in SkTInsertionSort()
133 } while (left < hole && lessThan(insert, *(hole - 1))); in SkTInsertionSort()
134 *hole = std::move(insert); in SkTInsertionSort()
/external/walt/hardware/
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
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
/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/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;
/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/e2fsprogs/misc/
Dcreate_inode.c468 off_t data = 0, hole; in try_lseek_copy() local
480 hole = lseek(fd, data, SEEK_HOLE); in try_lseek_copy()
481 if (hole < 0) in try_lseek_copy()
485 hole_blk = (hole + (fs->blocksize - 1)) & ~(off_t)(fs->blocksize - 1); in try_lseek_copy()
491 data = hole; in try_lseek_copy()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Dspill-stack-realignment.mir33 ; Force preserve a CSR to create a hole in the CSR stack region.
/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/mesa3d/src/gallium/drivers/swr/
Dswr_draw.cpp81 state.stream.decl[num].hole = true; in swr_draw_vbo()
97 state.stream.decl[num].hole = false; in swr_draw_vbo()
/external/v8/src/objects/
Dordered-hash-table.cc211 Object* hole = ReadOnlyRoots(isolate).the_hole_value(); in Delete() local
213 table->set(index + i, hole); in Delete()
453 Object* hole = ReadOnlyRoots(isolate).the_hole_value(); in Delete() local
455 table->SetDataEntry(entry, j, hole); in Delete()
/external/deqp-deps/glslang/Test/
D440.vert137 int i; // 4 bytes plus 4 byte hole
143 bool b; // 4 plus 4 byte hole
/external/u-boot/net/
Dnet.c870 struct hole { struct
882 struct hole *payload, *thisfrag, *h, *newh; in __net_defragment() argument
889 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE); in __net_defragment()
/external/libcap/doc/
Dcapability.notes43 for a potential attacker to exploit a hole in a daemon of this
/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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Thumb2/
Daligned-spill.ll71 ; Spill 7 d-registers, leave a hole.
/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::

123456