Home
last modified time | relevance | path

Searched refs:entrypoints (Results 1 – 25 of 27) sorted by relevance

12

/external/mesa3d/src/intel/vulkan/
Danv_entrypoints_gen.py376 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 …]
Danv_device.c575 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/
Dradv_entrypoints_gen.py224 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/
Degl-entrypoint-check9 entrypoints=$(grep EGL_ENTRYPOINT "$srcdir"/main/eglentrypoint.h)
10 sorted=$(sort <<< "$entrypoints")
11 test "$entrypoints" = "$sorted"
/external/vulkan-validation-layers/layers/json/
DVkLayer_core_validation.json.in20 "entrypoints": ["vkDebugMarkerSetObjectTagEXT", array
30 "entrypoints": ["vkCreateValidationCacheEXT", array
DVkLayer_stateless_validation.json.in20 "entrypoints": ["vkDebugMarkerSetObjectTagEXT", array
DVkLayer_object_lifetimes.json.in20 "entrypoints": ["vkDebugMarkerSetObjectTagEXT", array
/external/selinux/python/sepolicy/sepolicy/
D__init__.py732entrypoints = 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 …]
Dmanpage.py941 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:
Dgui.py1126 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/
Dfiles_exec.txt4 In SELinux these are called entrypoints. SELinux controls the executable files that can be used as…
/external/libchrome/mojo/core/
DBUILD.gn48 "entrypoints.h",
77 "entrypoints.cc",
/external/mesa3d/src/egl/main/
DREADME.txt27 populated with all the EGL entrypoints. Typically, _eglInitDriverFallbacks()
/external/vulkan-validation-layers/layers/
Dshader_validation.cpp2189 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()
DREADME.md14 library. Undefined entrypoints in the Layer library will be passed to the next Layer which
/external/swiftshader/third_party/LLVM/test/Transforms/ObjCARC/
Dcontract.ll119 ; Those entrypoints don't exist yet though.
Drv.ll115 ; Those entrypoints don't exist yet though.
/external/u-boot/doc/
DREADME.xtensa53 U-Boot provides a jump table of entrypoints to exported functions
/external/clang/test/CodeGenObjC/
Dexceptions.m144 // The finally cleanup has two threaded entrypoints after optimization:
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/ObjCARC/
Dcontract.ll120 ; Those entrypoints don't exist yet though.
Drv.ll115 ; Those entrypoints don't exist yet though.
/external/llvm/test/Transforms/ObjCARC/
Dcontract.ll120 ; Those entrypoints don't exist yet though.
Drv.ll115 ; Those entrypoints don't exist yet though.
/external/mesa3d/docs/
DlibGL.txt150 The __driRegisterExtensions() function can add new entrypoints to libGL
/external/mesa3d/prebuilt-intermediates/vulkan/
Danv_entrypoints.c232 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()

12