/external/mesa3d/src/intel/vulkan/ |
D | anv_entrypoints_gen.py | 376 entrypoints = OrderedDict() 388 assert fullname not in entrypoints 389 entrypoints[fullname] = Entrypoint(fullname, ret_type, params, guard) 399 e = entrypoints[command.attrib['name']] 417 e = entrypoints[command.attrib['name']] 423 return [e for e in entrypoints.itervalues() if e.enabled] 440 def gen_code(entrypoints): argument 444 for e in entrypoints: 450 for e in entrypoints: 462 return TEMPLATE_C.render(entrypoints=entrypoints, [all …]
|
D | anv_device.c | 575 for (unsigned i = 0; i < ARRAY_SIZE(instance->dispatch.entrypoints); i++) { in anv_CreateInstance() 581 instance->dispatch.entrypoints[i] = NULL; in anv_CreateInstance() 582 } else if (anv_dispatch_table.entrypoints[i] != NULL) { in anv_CreateInstance() 583 instance->dispatch.entrypoints[i] = anv_dispatch_table.entrypoints[i]; in anv_CreateInstance() 585 instance->dispatch.entrypoints[i] = in anv_CreateInstance() 586 anv_tramp_dispatch_table.entrypoints[i]; in anv_CreateInstance() 1108 return instance->dispatch.entrypoints[idx]; in anv_GetInstanceProcAddr() 1140 return device->dispatch.entrypoints[idx]; in anv_GetDeviceProcAddr() 1303 for (unsigned i = 0; i < ARRAY_SIZE(device->dispatch.entrypoints); i++) { in anv_device_init_dispatch() 1310 device->dispatch.entrypoints[i] = NULL; in anv_device_init_dispatch() [all …]
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_entrypoints_gen.py | 224 entrypoints = [] 258 entrypoints.append((type, shortname, params, index, cal_hash(fullname), guard)) 261 return entrypoints 278 def gen_code(entrypoints): argument 282 for _, name, _, _, _, _ in entrypoints: 288 for _, name, _, num, h, _ in entrypoints: 299 return TEMPLATE_C.render(entrypoints=entrypoints, 322 entrypoints = [] 326 entrypoints += get_entrypoints(doc, get_entrypoints_defines(doc), 327 start_index=len(entrypoints)) [all …]
|
/external/mesa3d/src/egl/ |
D | egl-entrypoint-check | 9 entrypoints=$(grep EGL_ENTRYPOINT "$srcdir"/main/eglentrypoint.h) 10 sorted=$(sort <<< "$entrypoints") 11 test "$entrypoints" = "$sorted"
|
/external/vulkan-validation-layers/layers/json/ |
D | VkLayer_core_validation.json.in | 20 "entrypoints": ["vkDebugMarkerSetObjectTagEXT", array 30 "entrypoints": ["vkCreateValidationCacheEXT", array
|
D | VkLayer_stateless_validation.json.in | 20 "entrypoints": ["vkDebugMarkerSetObjectTagEXT", array
|
D | VkLayer_object_lifetimes.json.in | 20 "entrypoints": ["vkDebugMarkerSetObjectTagEXT", array
|
/external/selinux/python/sepolicy/sepolicy/ |
D | __init__.py | 732 …entrypoints = list(filter(lambda x: x['target'] == entrypoint, search([TRANSITION], {'source': "in… 733 return entrypoints[0]["transtype"] 744 entrypoints = [] 748 entrypoints.append(i.target) 752 return entrypoints 759 entrypoints = {} 763 if transtype in entrypoints: 764 entrypoints[transtype].append(str(i.target)) 766 entrypoints[transtype] = [str(i.target)] 770 return entrypoints [all …]
|
D | manpage.py | 941 entrypoints = [x['target'] for x in filter(lambda y: 946 if len(entrypoints) == 0: 952 if len(entrypoints) > 1: 953 entrypoints_str = "\\fB%s\\fP file types" % ", ".join(entrypoints) 955 entrypoints_str = "\\fB%s\\fP file type" % entrypoints[0] 962 if "bin_t" in entrypoints: 963 entrypoints.remove("bin_t") 968 for entrypoint in entrypoints:
|
D | gui.py | 1126 self.entrypoints = sepolicy.get_entrypoints(application) 1127 for exe in self.entrypoints.keys(): 1128 if len(self.entrypoints[exe]) == 0: 1130 file_class = self.entrypoints[exe][1] 1131 for path in self.entrypoints[exe][0]: 1648 if ipage == EXE_PAGE and self.entrypoints != None: 1649 for exe in self.entrypoints.keys():
|
/external/selinux/python/sepolicy/sepolicy/help/ |
D | files_exec.txt | 4 In SELinux these are called entrypoints. SELinux controls the executable files that can be used as…
|
/external/libchrome/mojo/core/ |
D | BUILD.gn | 48 "entrypoints.h", 77 "entrypoints.cc",
|
/external/mesa3d/src/egl/main/ |
D | README.txt | 27 populated with all the EGL entrypoints. Typically, _eglInitDriverFallbacks()
|
/external/vulkan-validation-layers/layers/ |
D | shader_validation.cpp | 2189 spirv_inst_iter entrypoints[32]; in ValidateAndCapturePipelineShaderState() local 2190 memset(entrypoints, 0, sizeof(entrypoints)); in ValidateAndCapturePipelineShaderState() 2198 …ValidatePipelineShaderStage(dev_data, pStage, pipeline, &shaders[stage_id], &entrypoints[stage_id], in ValidateAndCapturePipelineShaderState() 2212 …skip |= ValidateViAgainstVsInputs(report_data, vi, shaders[vertex_stage], entrypoints[vertex_stage… in ValidateAndCapturePipelineShaderState() 2227 … skip |= ValidateInterfaceBetweenStages(report_data, shaders[producer], entrypoints[producer], in ValidateAndCapturePipelineShaderState() 2228 … &shader_stage_attribs[producer], shaders[consumer], entrypoints[consumer], in ValidateAndCapturePipelineShaderState() 2237 …lidateFsOutputsAgainstRenderPass(report_data, shaders[fragment_stage], entrypoints[fragment_stage]… in ValidateAndCapturePipelineShaderState()
|
D | README.md | 14 library. Undefined entrypoints in the Layer library will be passed to the next Layer which
|
/external/swiftshader/third_party/LLVM/test/Transforms/ObjCARC/ |
D | contract.ll | 119 ; Those entrypoints don't exist yet though.
|
D | rv.ll | 115 ; Those entrypoints don't exist yet though.
|
/external/u-boot/doc/ |
D | README.xtensa | 53 U-Boot provides a jump table of entrypoints to exported functions
|
/external/clang/test/CodeGenObjC/ |
D | exceptions.m | 144 // The finally cleanup has two threaded entrypoints after optimization:
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/ObjCARC/ |
D | contract.ll | 120 ; Those entrypoints don't exist yet though.
|
D | rv.ll | 115 ; Those entrypoints don't exist yet though.
|
/external/llvm/test/Transforms/ObjCARC/ |
D | contract.ll | 120 ; Those entrypoints don't exist yet though.
|
D | rv.ll | 115 ; Those entrypoints don't exist yet though.
|
/external/mesa3d/docs/ |
D | libGL.txt | 150 The __driRegisterExtensions() function can add new entrypoints to libGL
|
/external/mesa3d/prebuilt-intermediates/vulkan/ |
D | anv_entrypoints.c | 232 static const struct anv_entrypoint entrypoints[] = { variable 4384 return anv_dispatch_table.entrypoints[index]; in anv_resolve_entrypoint() 4408 if (genX_table->entrypoints[index]) in anv_resolve_entrypoint() 4409 return genX_table->entrypoints[index]; in anv_resolve_entrypoint() 4411 return anv_dispatch_table.entrypoints[index]; in anv_resolve_entrypoint() 4707 e = &entrypoints[i]; in anv_get_entrypoint_index()
|