/hardware/google/gfxstream/guest/mesa/src/util/ |
D | slab.c | 87 slab_free_orphaned(struct slab_element_header *elt) in slab_free_orphaned() argument 91 assert(elt->owner & 1); in slab_free_orphaned() 93 page = (struct slab_page_header *)(elt->owner & ~(intptr_t)1); in slab_free_orphaned() 153 struct slab_element_header *elt = slab_get_element(pool->parent, page, i); in slab_destroy_child() local 154 p_atomic_set(&elt->owner, (intptr_t)page | 1); in slab_destroy_child() 159 struct slab_element_header *elt = pool->migrated; in slab_destroy_child() local 160 pool->migrated = elt->next; in slab_destroy_child() 161 slab_free_orphaned(elt); in slab_destroy_child() 167 struct slab_element_header *elt = pool->free; in slab_destroy_child() local 168 pool->free = elt->next; in slab_destroy_child() [all …]
|
/hardware/google/aemu/base/ |
D | ContiguousRangeMapper_unittest.cpp | 43 for (auto elt : elements) { in TEST() local 44 rm.add(elt, 1); in TEST() 77 for (auto elt : elements) { in TEST() local 78 rm.add(elt, 0x1000); in TEST() 110 for (auto elt : elements) { in TEST() local 111 rm.add(elt, 0x1000); in TEST()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/spec_tools/ |
D | util.py | 31 for elt in collection: 32 if pred(elt): 33 return elt 58 return findFirstWithPredicate(collection, lambda elt: elt.name == name)
|
D | attributes.py | 80 return [LengthEntry(elt) for elt in len_str.split(',')] 109 return [ExternSyncEntry(elt) for elt in sync_str.split(',')] 129 return [_parse_optional_elt(elt) for elt in optional_str.split(',')]
|
D | consistency_tools.py | 25 return set(elt.get("name") for elt in reg.tree.findall("./tags/tag[@name]"))
|
/hardware/google/gfxstream/host/gl/gl-host-common/opengl/ |
D | NativeGpuInfo_darwin.cpp | 101 for (const auto& elt : gpulist) { in getGpuInfoListNative() local 102 snprintf(vendoridbuf, sizeof(vendoridbuf), "%04x", elt.first); in getGpuInfoListNative() 103 snprintf(deviceidbuf, sizeof(deviceidbuf), "%04x", elt.second); in getGpuInfoListNative()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/ |
D | xml_consistency.py | 301 params = [(getElemName(elt), elt) for elt in elem.findall('param')] 303 def is_count_output(name, elt): argument 308 and (elt.tail is None or 'const' not in elt.tail) \ 311 countParams = [elt 312 for name, elt in params 313 if is_count_output(name, elt)] 510 type_elts = [elt 511 for elt in info.elem.findall('member') 512 if getElemType(elt) == TYPEENUM]
|
/hardware/google/gfxstream/host/gl/glestranslator/EGL/ |
D | EglGlobalInfo.cpp | 160 for (auto elt : m_surfaceDestroyList) { in sweepDestroySurfaces() local 161 EglDisplay* dpy = elt.first; in sweepDestroySurfaces() 163 EGLSurface surface = elt.second; in sweepDestroySurfaces()
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
D | bcmutils.c | 1553 bcm_next_tlv(bcm_tlv_t *elt, int *buflen) in bcm_next_tlv() argument 1558 if (!bcm_valid_tlv(elt, *buflen)) in bcm_next_tlv() 1562 len = elt->len; in bcm_next_tlv() 1563 elt = (bcm_tlv_t*)(elt->data + len); in bcm_next_tlv() 1567 if (!bcm_valid_tlv(elt, *buflen)) in bcm_next_tlv() 1570 return elt; in bcm_next_tlv() 1581 bcm_tlv_t *elt; in bcm_parse_tlvs() local 1584 elt = (bcm_tlv_t*)buf; in bcm_parse_tlvs() 1589 int len = elt->len; in bcm_parse_tlvs() 1592 if ((elt->id == key) && in bcm_parse_tlvs() [all …]
|
/hardware/google/aemu/host-common/include/host-common/ |
D | DeviceContextRunner.h | 162 for (const auto& elt : mPending) { in onTimerEvent() local 163 performDeviceOperation(elt); in onTimerEvent()
|
/hardware/google/aemu/host-common/ |
D | goldfish_sync.cpp | 116 if (auto elt = android::base::find(wait_map, hostcmd_handle)) { in goldfish_sync_receive_hostcmd_result() local 117 CommandWaitInfo* wait_info = elt->get(); in goldfish_sync_receive_hostcmd_result()
|
/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/ |
D | ANGLEShaderParser.cpp | 294 for (const auto& elt : linkInfo->nameMap) { in getShaderLinkInfo() local 295 linkInfo->nameMapReverse[elt.second] = elt.first; in getShaderLinkInfo()
|
D | ProgramData.cpp | 988 for (const auto& elt : vertShaderLinkInfo.attributes) { in sCheckLimits() local 989 if (const auto loc = android::base::find(pData->boundAttribLocs, elt.name)) { in sCheckLimits()
|
/hardware/google/gfxstream/host/vulkan/ |
D | VkDecoderGlobalState.cpp | 6718 auto elt = sBoxedHandleManager.get((uint64_t)(uintptr_t)boxed); \ 6719 if (!elt) return; \ 6720 releaseOrderMaintInfo(elt->ordMaintInfo); \ 6721 if (elt->readStream) { \ 6722 sReadStreamRegistry.push(elt->readStream); \ 6723 elt->readStream = nullptr; \ 6728 auto elt = sBoxedHandleManager.get((uint64_t)(uintptr_t)boxed); \ 6729 if (!elt) return VK_NULL_HANDLE; \ 6730 return (type)elt->underlying; \ 6733 auto elt = sBoxedHandleManager.get((uint64_t)(uintptr_t)boxed); \ [all …]
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
D | bcmutils.h | 754 #define bcm_valid_tlv(elt, buflen) ((buflen) >= 2 && (int)(buflen) >= (int)(2 + (elt)->len)) argument 810 extern bcm_tlv_t *bcm_next_tlv(bcm_tlv_t *elt, int *buflen);
|
/hardware/google/gfxstream/host/gl/gles2_dec/ |
D | GLESv2Decoder.cpp | 571 for (auto& elt : unpacked) { in s_glGetUniformIndicesAEMU() local 572 unpackedArray[i] = (GLchar*)&elt[0]; in s_glGetUniformIndicesAEMU() 612 for (auto& elt : unpacked) { in s_glTransformFeedbackVaryingsAEMU() local 613 unpackedArray[i] = &elt[0]; in s_glTransformFeedbackVaryingsAEMU()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/katex/ |
D | katex.js | 9768 var elt = buildHTML_buildGroup(inrow[c], options); 9770 if (depth < elt.depth) { 9771 depth = elt.depth; 9774 if (height < elt.height) { 9775 height = elt.height; 9778 outrow[c] = elt;
|
D | katex.mjs | 9624 const elt = buildGroup(inrow[c], options); 9626 if (depth < elt.depth) { 9627 depth = elt.depth; 9630 if (height < elt.height) { 9631 height = elt.height; 9634 outrow[c] = elt;
|