Home
last modified time | relevance | path

Searched refs:placement (Results 1 - 23 of 23) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_test_dma_perf.c78 /* results[log2(size)][placement][method][] */ in si_test_dma_perf()
91 for (unsigned placement = 0; placement < ARRAY_SIZE(placement_str); placement++) { in si_test_dma_perf()
92 bool is_copy = placement >= 2; in si_test_dma_perf()
126 printf("%s ,", placement_str[placement]); in si_test_dma_perf()
158 if (placement == 0 || placement == 2 || placement == 4) in si_test_dma_perf()
163 if (placement in si_test_dma_perf()
[all...]
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-fuchsia.cc93 PlacementMode placement, size_t size, size_t alignment, in MapVmo()
97 DCHECK_IMPLIES(placement != PlacementMode::kAnywhere, address != nullptr); in MapVmo()
106 if (placement != PlacementMode::kAnywhere) { in MapVmo()
118 if (status != ZX_OK && placement == PlacementMode::kUseHint) { in MapVmo()
119 // If a placement hint was specified but couldn't be used (for example, in MapVmo()
134 void* address, PlacementMode placement, size_t size, in CreateAndMapVmo()
153 return MapVmo(vmar, vmar_base, page_size, address, vmo, 0, placement, size, in CreateAndMapVmo()
185 PlacementMode placement, size_t size, size_t alignment, in CreateAddressSpaceReservationInternal()
191 DCHECK_IMPLIES(placement != PlacementMode::kAnywhere, address != nullptr); in CreateAddressSpaceReservationInternal()
202 if (placement ! in CreateAddressSpaceReservationInternal()
91 MapVmo(const zx::vmar& vmar, void* vmar_base, size_t page_size, void* address, const zx::vmo& vmo, uint64_t offset, PlacementMode placement, size_t size, size_t alignment, OS::MemoryPermission access) MapVmo() argument
133 CreateAndMapVmo(const zx::vmar& vmar, void* vmar_base, size_t page_size, void* address, PlacementMode placement, size_t size, size_t alignment, OS::MemoryPermission access) CreateAndMapVmo() argument
183 CreateAddressSpaceReservationInternal( const zx::vmar& vmar, void* vmar_base, size_t page_size, void* address, PlacementMode placement, size_t size, size_t alignment, OS::MemoryPermission max_permission, zx::vmar* child, zx_vaddr_t* child_addr) CreateAddressSpaceReservationInternal() argument
249 PlacementMode placement = Allocate() local
265 PlacementMode placement = AllocateShared() local
312 PlacementMode placement = CreateAddressSpaceReservation() local
[all...]
/third_party/skia/src/gpu/
H A DGrProcessor.h135 void* operator new(size_t size, void* placement) { in operator new() argument
136 return ::operator new(size, placement); in operator new()
138 void operator delete(void* target, void* placement) { in operator delete() argument
139 ::operator delete(target, placement); in operator delete()
/third_party/mesa3d/src/gallium/winsys/amdgpu/drm/
H A Damdgpu_bo.c147 return ((struct amdgpu_winsys_bo*)buf)->base.placement; in amdgpu_bo_get_initial_domain()
210 if (bo->base.placement & RADEON_DOMAIN_VRAM_GTT) { in amdgpu_bo_destroy()
218 if (bo->base.placement & RADEON_DOMAIN_VRAM) in amdgpu_bo_destroy()
220 else if (bo->base.placement & RADEON_DOMAIN_GTT) in amdgpu_bo_destroy()
263 if (bo->base.placement & RADEON_DOMAIN_VRAM) in amdgpu_bo_do_map()
265 else if (bo->base.placement & RADEON_DOMAIN_GTT) in amdgpu_bo_do_map()
423 if (real->base.placement & RADEON_DOMAIN_VRAM) in amdgpu_bo_unmap()
425 else if (real->base.placement & RADEON_DOMAIN_GTT) in amdgpu_bo_unmap()
601 bo->base.placement = initial_domain; in amdgpu_create_bo()
672 if (bo->base.placement in amdgpu_bo_slab_destroy()
[all...]
H A Damdgpu_cs.c541 if (bo->base.placement & RADEON_DOMAIN_VRAM) in amdgpu_lookup_or_add_real_buffer()
543 else if (bo->base.placement & RADEON_DOMAIN_GTT) in amdgpu_lookup_or_add_real_buffer()
642 if (bo->base.placement & RADEON_DOMAIN_VRAM) in amdgpu_lookup_or_add_sparse_buffer()
644 else if (bo->base.placement & RADEON_DOMAIN_GTT) in amdgpu_lookup_or_add_sparse_buffer()
659 * the buffer placement during command submission. in amdgpu_cs_add_buffer()
/third_party/glfw/src/
H A Dmonitor.c95 void _glfwInputMonitor(_GLFWmonitor* monitor, int action, int placement) in _glfwInputMonitor() argument
99 assert(placement == _GLFW_INSERT_FIRST || placement == _GLFW_INSERT_LAST); in _glfwInputMonitor()
108 if (placement == _GLFW_INSERT_FIRST) in _glfwInputMonitor()
H A Dinternal.h947 void _glfwInputMonitor(_GLFWmonitor* monitor, int action, int placement);
/third_party/lzma/CPP/Windows/
H A DWindow.h246 bool SetPlacement(CONST WINDOWPLACEMENT *placement) { return BOOLToBool(::SetWindowPlacement(_window, placement)); } in SetPlacement() argument
247 bool GetPlacement(WINDOWPLACEMENT *placement) { return BOOLToBool(::GetWindowPlacement(_window, placement)); } in GetPlacement() argument
/third_party/protobuf/conformance/third_party/jsoncpp/
H A Djson.h923 void setComment(const char* comment, CommentPlacement placement);
925 void setComment(const char* comment, size_t len, CommentPlacement placement);
927 void setComment(const std::string& comment, CommentPlacement placement);
928 bool hasComment(CommentPlacement placement) const;
930 std::string getComment(CommentPlacement placement) const;
1476 void addComment(Location begin, Location end, CommentPlacement placement);
H A Djsoncpp.cpp545 CommentPlacement placement = commentBefore; in readComment() local
548 placement = commentAfterOnSameLine; in readComment()
551 addComment(commentBegin, current_, placement); in readComment()
576 Reader::addComment(Location begin, Location end, CommentPlacement placement) { in addComment() argument
579 if (placement == commentAfterOnSameLine) { in addComment()
581 lastValue_->setComment(normalized, placement); in addComment()
1201 void addComment(Location begin, Location end, CommentPlacement placement);
1523 CommentPlacement placement = commentBefore;
1526 placement = commentAfterOnSameLine;
1529 addComment(commentBegin, current_, placement);
3721 setComment(const char* comment, size_t len, CommentPlacement placement) setComment() argument
3731 setComment(const char* comment, CommentPlacement placement) setComment() argument
3735 setComment(const std::string& comment, CommentPlacement placement) setComment() argument
[all...]
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
H A Djson.h873 void setComment(const char* comment, CommentPlacement placement);
875 void setComment(const char* comment, size_t len, CommentPlacement placement);
877 void setComment(const std::string& comment, CommentPlacement placement);
878 bool hasComment(CommentPlacement placement) const;
880 std::string getComment(CommentPlacement placement) const;
1425 void addComment(Location begin, Location end, CommentPlacement placement);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
H A Djson.h873 void setComment(const char* comment, CommentPlacement placement);
875 void setComment(const char* comment, size_t len, CommentPlacement placement);
877 void setComment(const std::string& comment, CommentPlacement placement);
878 bool hasComment(CommentPlacement placement) const;
880 std::string getComment(CommentPlacement placement) const;
1425 void addComment(Location begin, Location end, CommentPlacement placement);
/third_party/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
H A Djson.h873 void setComment(const char* comment, CommentPlacement placement);
875 void setComment(const char* comment, size_t len, CommentPlacement placement);
877 void setComment(const std::string& comment, CommentPlacement placement);
878 bool hasComment(CommentPlacement placement) const;
880 std::string getComment(CommentPlacement placement) const;
1425 void addComment(Location begin, Location end, CommentPlacement placement);
/third_party/skia/tests/
H A DSkBlockAllocatorTest.cpp83 // Tests placement new initialization to increase head block size, option #2 in DEF_TEST()
85 SkBlockAllocator* placement = new (mem) SkBlockAllocator(GrowthPolicy::kLinear, 1024, in DEF_TEST() local
87 REPORTER_ASSERT(r, placement->preallocSize() == 1024); in DEF_TEST()
88 REPORTER_ASSERT(r, placement->preallocUsableSpace() < 1024 && in DEF_TEST()
89 placement->preallocUsableSpace() >= (1024 - sizeof(SkBlockAllocator))); in DEF_TEST()
90 placement->~SkBlockAllocator(); in DEF_TEST()
/third_party/skia/tools/
H A Dusing_skia_and_harfbuzz.cpp207 Placement placement(&config, doc.get()); in main()
219 placement.WriteLine(*shaper, line.c_str(), line.size()); in main()
/third_party/node/deps/v8/src/compiler/
H A Dscheduler.h53 // Placement of a node changes during scheduling. The placement state
66 // from the end have kUnknown placement. After the PrepareUses phase runs,
67 // also the opposite is true - all nodes with kUnknown placement are not
76 BasicBlock* minimum_block_; // Minimum legal RPO placement.
107 void UpdatePlacement(Node* node, Placement placement);
H A Dscheduler.cc123 void Scheduler::UpdatePlacement(Node* node, Placement placement) { in UpdatePlacement() argument
129 DCHECK_EQ(Scheduler::kFixed, placement); in UpdatePlacement()
130 data->placement_ = placement; in UpdatePlacement()
142 DCHECK_EQ(Scheduler::kFixed, placement); in UpdatePlacement()
156 UpdatePlacement(use, placement); in UpdatePlacement()
163 DCHECK_EQ(Scheduler::kScheduled, placement); in UpdatePlacement()
176 data->placement_ = placement; in UpdatePlacement()
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/
H A Djsoncpp.cpp530 CommentPlacement placement = commentBefore; in readComment() local
533 placement = commentAfterOnSameLine; in readComment()
536 addComment(commentBegin, current_, placement); in readComment()
561 Reader::addComment(Location begin, Location end, CommentPlacement placement) { in addComment() argument
564 if (placement == commentAfterOnSameLine) { in addComment()
566 lastValue_->setComment(normalized, placement); in addComment()
1221 void addComment(Location begin, Location end, CommentPlacement placement);
1494 CommentPlacement placement = commentBefore;
1497 placement = commentAfterOnSameLine;
1500 addComment(commentBegin, current_, placement);
3688 setComment(const char* comment, size_t len, CommentPlacement placement) setComment() argument
3698 setComment(const char* comment, CommentPlacement placement) setComment() argument
3702 setComment(const std::string& comment, CommentPlacement placement) setComment() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
H A Djsoncpp.cpp530 CommentPlacement placement = commentBefore; in readComment() local
533 placement = commentAfterOnSameLine; in readComment()
536 addComment(commentBegin, current_, placement); in readComment()
561 Reader::addComment(Location begin, Location end, CommentPlacement placement) { in addComment() argument
564 if (placement == commentAfterOnSameLine) { in addComment()
566 lastValue_->setComment(normalized, placement); in addComment()
1221 void addComment(Location begin, Location end, CommentPlacement placement);
1494 CommentPlacement placement = commentBefore;
1497 placement = commentAfterOnSameLine;
1500 addComment(commentBegin, current_, placement);
3688 setComment(const char* comment, size_t len, CommentPlacement placement) setComment() argument
3698 setComment(const char* comment, CommentPlacement placement) setComment() argument
3702 setComment(const std::string& comment, CommentPlacement placement) setComment() argument
[all...]
/third_party/spirv-headers/tools/buildHeaders/jsoncpp/dist/
H A Djsoncpp.cpp530 CommentPlacement placement = commentBefore; in readComment() local
533 placement = commentAfterOnSameLine; in readComment()
536 addComment(commentBegin, current_, placement); in readComment()
561 Reader::addComment(Location begin, Location end, CommentPlacement placement) { in addComment() argument
564 if (placement == commentAfterOnSameLine) { in addComment()
566 lastValue_->setComment(normalized, placement); in addComment()
1221 void addComment(Location begin, Location end, CommentPlacement placement);
1494 CommentPlacement placement = commentBefore;
1497 placement = commentAfterOnSameLine;
1500 addComment(commentBegin, current_, placement);
3688 setComment(const char* comment, size_t len, CommentPlacement placement) setComment() argument
3698 setComment(const char* comment, CommentPlacement placement) setComment() argument
3702 setComment(const std::string& comment, CommentPlacement placement) setComment() argument
[all...]
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_buffer.h118 uint8_t placement; member
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_bo.c308 bo->base.placement = screen->heap_flags[heap]; in bo_create_internal()
532 bo->base.placement = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT; in bo_sparse_create()
1244 bo->base.placement = bo->u.slab.real->base.placement; in bo_slab_alloc()
H A Dzink_resource.c1027 obj->coherent = obj->bo->base.placement & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT; in resource_object_create()
1029 obj->host_visible = obj->bo->base.placement & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT; in resource_object_create()

Completed in 41 milliseconds