HomeSort by relevance Sort by last modified time
    Searched refs:desc (Results 151 - 175 of 4341) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/amd/vulkan/
radv_pass.c 72 const VkSubpassDescription *desc = &pCreateInfo->pSubpasses[i]; local
75 desc->inputAttachmentCount +
76 desc->colorAttachmentCount +
78 desc->colorAttachmentCount;
95 const VkSubpassDescription *desc = &pCreateInfo->pSubpasses[i]; local
98 subpass->input_count = desc->inputAttachmentCount;
99 subpass->color_count = desc->colorAttachmentCount;
101 if (desc->inputAttachmentCount > 0) {
103 p += desc->inputAttachmentCount;
105 for (uint32_t j = 0; j < desc->inputAttachmentCount; j++)
    [all...]
  /external/python/cpython2/Lib/plat-mac/
aepack.py 5 unpack(desc) does the reverse
131 def unpack(desc, formodulename=""):
133 t = desc.type
136 desc = desc.AECoerceDesc(unpacker_coercions[t])
137 t = desc.type # This is a guess by Jack....
141 for i in range(desc.AECountItems()):
142 keyword, item = desc.AEGetNthDesc(i+1, '****')
147 for i in range(desc.AECountItems()):
148 keyword, item = desc.AEGetNthDesc(i+1, '****'
    [all...]
  /external/skia/src/gpu/
GrResourceProvider.cpp 54 bool validate_desc(const GrSurfaceDesc& desc, const GrCaps& caps, int levelCount = 0) {
55 if (desc.fWidth <= 0 || desc.fHeight <= 0) {
58 if (!caps.isConfigTexturable(desc.fConfig)) {
61 if (desc.fFlags & kRenderTarget_GrSurfaceFlag) {
62 if (!caps.isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
66 if (desc.fSampleCnt) {
70 if (levelCount > 1 && (GrPixelConfigIsSint(desc.fConfig) || !caps.mipMapSupport())) {
76 sk_sp<GrTexture> GrResourceProvider::createTexture(const GrSurfaceDesc& desc, SkBudgeted budgeted
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aepack.py 5 unpack(desc) does the reverse
131 def unpack(desc, formodulename=""):
133 t = desc.type
136 desc = desc.AECoerceDesc(unpacker_coercions[t])
137 t = desc.type # This is a guess by Jack....
141 for i in range(desc.AECountItems()):
142 keyword, item = desc.AEGetNthDesc(i+1, '****')
147 for i in range(desc.AECountItems()):
148 keyword, item = desc.AEGetNthDesc(i+1, '****'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aepack.py 5 unpack(desc) does the reverse
131 def unpack(desc, formodulename=""):
133 t = desc.type
136 desc = desc.AECoerceDesc(unpacker_coercions[t])
137 t = desc.type # This is a guess by Jack....
141 for i in range(desc.AECountItems()):
142 keyword, item = desc.AEGetNthDesc(i+1, '****')
147 for i in range(desc.AECountItems()):
148 keyword, item = desc.AEGetNthDesc(i+1, '****'
    [all...]
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_buffer_malloc.c 128 const struct pb_desc *desc)
139 buf->base.usage = desc->usage;
141 buf->base.alignment = desc->alignment;
144 buf->data = align_malloc(size, desc->alignment < sizeof(void*) ? sizeof(void*) : desc->alignment);
157 const struct pb_desc *desc)
159 return pb_malloc_buffer_create(size, desc);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeLabelProvider.java 45 ElementDescriptor desc = null; local
49 desc = (ElementDescriptor) element;
52 desc = node.getDescriptor();
55 if (desc != null) {
56 Image img = desc.getCustomizedIcon();
75 ElementDescriptor desc = (ElementDescriptor) element; local
76 return desc.getUiName();
  /external/mesa3d/src/gallium/state_trackers/clover/api/
memory.cpp 129 const cl_image_desc *desc,
139 if (!desc)
142 if (desc->image_array_size == 0 &&
143 (desc->image_type == CL_MEM_OBJECT_IMAGE1D_ARRAY ||
144 desc->image_type == CL_MEM_OBJECT_IMAGE2D_ARRAY))
148 (desc->image_row_pitch || desc->image_slice_pitch))
151 if (desc->num_mip_levels || desc->num_samples)
154 if (bool(desc->buffer) != (desc->image_type == CL_MEM_OBJECT_IMAGE1D_BUFFER)
222 const cl_image_desc desc = { CL_MEM_OBJECT_IMAGE2D, width, height, 0, 0, local
234 const cl_image_desc desc = { CL_MEM_OBJECT_IMAGE3D, width, height, depth, 0, local
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
LambdaClassFixer.java 62 private String desc; field in class:LambdaClassFixer
91 desc = null;
100 int access, String name, String desc, String signature, Object value) {
102 return super.visitField(access, name, desc, signature, value);
107 int access, String name, String desc, String signature, String[] exceptions) {
109 && desc.equals("()Ljava/lang/Object;")) {
120 implementedMethods.add(name + ":" + desc);
129 this.desc = desc;
131 if (!lambdaInfo.needFactory() && !desc.startsWith("()"))
    [all...]
LongCompareMethodRewriter.java 35 int access, String name, String desc, String signature, String[] exceptions) {
36 MethodVisitor visitor = super.cv.visitMethod(access, name, desc, signature, exceptions);
47 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) {
51 || !desc.equals("(JJ)I")) {
52 super.visitMethodInsn(opcode, owner, name, desc, itf);
ObjectsRequireNonNullMethodRewriter.java 38 int access, String name, String desc, String signature, String[] exceptions) {
39 MethodVisitor visitor = super.cv.visitMethod(access, name, desc, signature, exceptions);
50 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) {
54 || !desc.equals("(Ljava/lang/Object;)Ljava/lang/Object;")) {
55 super.visitMethodInsn(opcode, owner, name, desc, itf);
  /external/libese/examples/
ese_nxp_sample.c 31 const char *desc; member in struct:Apdu
36 const char *desc; member in struct:ApduSession
45 .desc = "SELECT CARD MANAGER",
52 .desc = "GET CPLC",
57 .desc = "GET-CPLC",
65 .count = 0, .desc = "Empty session (hw close only)", .apdus = {},
76 .desc = "SELECT JCOP IDENTIFY",
98 printf("Running session %s\n", kSessions[s]->desc);
102 printf("Sending APDU %u: %s\n", apdu_index, apdu->desc);
  /external/ltp/testcases/kernel/syscalls/unlink/
unlink07.c 141 char *desc; member in struct:test_case_t
174 char *desc; local
194 for (ind = 0; Test_cases[ind].desc != NULL; ind++) {
197 desc = Test_cases[ind].desc;
214 desc, TEST_ERRNO);
218 desc, TEST_ERRNO,
224 desc, TEST_RETURN,
254 for (ind = 0; Test_cases[ind].desc != NULL; ind++) {
  /external/ltp/testcases/kernel/syscalls/writev/
writev01.c 57 const char *desc; member in struct:testcase_t
65 .desc = "invalid iov_len",
73 .desc = "invalid fd",
81 .desc = "invalid iovcnt",
89 .desc = "zero iovcnt",
96 .desc = "NULL and zero length iovec",
103 .desc = "write to closed pipe",
137 "%s, expected: %d (%s), got: %ld (%s)", tcase->desc,
142 "%s, expected: %d, got: %ld", tcase->desc,
  /external/skia/src/gpu/vk/
GrVkPipelineStateCache.cpp 94 GrVkPipelineState::Desc desc; local
95 if (!GrVkPipelineState::Desc::Build(&desc, primProc, pipeline, stencil,
100 desc.finalize();
102 std::unique_ptr<Entry>* entry = fMap.find(desc);
106 desc.setSurfaceOriginKey(GrGLSLFragmentShaderBuilder::KeyForSurfaceOrigin(origin));
107 desc.finalize();
108 entry = fMap.find(desc);
120 &desc,
    [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/tools/
list_ports.py 43 for port, desc, hwid in comports():
44 if r.search(port) or r.search(desc) or r.search(hwid):
45 yield port, desc, hwid
88 for port, desc, hwid in iterator:
91 print(" desc: %s" % (desc,))
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 62 const std::string desc; member in class:clang::ento::BuiltinBug
66 : BugType(check, name, categories::LogicError), desc(description) {}
70 : BugType(checker, name, categories::LogicError), desc(description) {}
73 : BugType(checker, name, categories::LogicError), desc(name) {}
75 StringRef getDescription() const { return desc; }
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerRegistry.h 88 StringRef Desc;
90 CheckerInfo(InitializationFunction fn, StringRef name, StringRef desc)
91 : Initialize(fn), FullName(name), Desc(desc) {}
106 StringRef desc);
111 void addChecker(StringRef fullName, StringRef desc) {
114 addChecker(&CheckerRegistry::initializeManager<T>, fullName, desc);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
TestInputDataStructure.java 27 private String desc = null; field in class:TestInputDataStructure
45 * @return Returns the desc.
48 return desc;
51 * @param desc The desc to set.
53 public void setDesc(String desc) {
54 this.desc = desc;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
TestInputDataStructure.java 26 private String desc = null; field in class:TestInputDataStructure
44 * @return Returns the desc.
47 return desc;
50 * @param desc The desc to set.
52 public void setDesc(String desc) {
53 this.desc = desc;
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
MethodCoverageImpl.java 23 private final String desc; field in class:MethodCoverageImpl
32 * @param desc
37 public MethodCoverageImpl(final String name, final String desc,
40 this.desc = desc;
70 return desc;
  /external/javassist/src/main/javassist/util/proxy/
RuntimeSupport.java 50 String desc, java.lang.reflect.Method[] methods)
55 : findMethod(self, thisMethod, desc);
56 methods[index] = findSuperMethod(self, superMethod, desc);
67 public static Method findMethod(Object self, String name, String desc) {
68 Method m = findMethod2(self.getClass(), name, desc);
70 error(self, name, desc);
81 public static Method findSuperMethod(Object self, String name, String desc) {
83 Method m = findSuperMethod2(clazz.getSuperclass(), name, desc);
85 m = searchInterfaces(clazz, name, desc);
88 error(self, name, desc);
    [all...]
  /external/libxml2/doc/examples/
parse4.c 18 static FILE *desc; variable
33 res = fread(mem, 1, size, desc);
120 desc = fopen(argv[1], "rb");
121 if (desc != NULL) {
123 fclose(desc);
  /external/mesa3d/src/gallium/auxiliary/util/
u_sampler.c 74 const struct util_format_description *desc = util_format_description(format); local
76 assert(desc);
77 if (desc) {
78 if (desc->swizzle[1] == PIPE_SWIZZLE_0) {
81 if (desc->swizzle[2] == PIPE_SWIZZLE_0) {
  /external/mesa3d/src/gallium/docs/source/exts/
formatting.py 20 opcode, desc = sig.split("-", 1)
22 desc = " (%s)" % desc.strip()
24 signode += sphinx.addnodes.desc_annotation(desc, desc)

Completed in 852 milliseconds

1 2 3 4 5 67 8 91011>>