Searched defs:desc (Results 226 - 250 of 927) sorted by relevance

1234567891011>>

/external/deqp/modules/gles3/functional/
H A Des3fShaderSwitchTests.cpp89 static tcu::TestCase* makeSwitchCase (Context& context, const char* name, const char* desc, SwitchType type, bool isVertex, const LineStream& switchBody) argument
150 return new ShaderSwitchCase(context, name, desc, isVertex, vtx.str().c_str(), frag.str().c_str(),
156 static void makeSwitchCases (TestCaseGroup* group, const char* name, const char* desc, const LineStream& switchBody) argument
163 group->addChild(makeSwitchCase(group->getContext(), (string(name) + "_" + switchTypeNames[type] + "_vertex").c_str(), desc, (SwitchType)type, true, switchBody));
164 group->addChild(makeSwitchCase(group->getContext(), (string(name) + "_" + switchTypeNames[type] + "_fragment").c_str(), desc, (SwitchType)type, false, switchBody));
/external/deqp/modules/gles31/functional/
H A Des31fNegativeTestShared.cpp42 ErrorCase::ErrorCase (Context& ctx, const char* name, const char* desc) argument
43 : TestCase(ctx, name, desc)
81 void NegativeTestContext::beginSection (const string& desc) argument
85 getLog() << TestLog::Section("callstream", desc);
H A Des31fShaderStateQueryTests.cpp45 SamplerTypeCase (Context& ctx, const char* name, const char* desc);
51 SamplerTypeCase::SamplerTypeCase (Context& ctx, const char* name, const char* desc) argument
52 : TestCase(ctx, name, desc)
/external/deqp/modules/gles31/stress/
H A Des31sDrawTests.cpp105 InvalidDrawCase (Context& context, const char* name, const char* desc, DrawType type, InvalidOperation op);
122 InvalidDrawCase::InvalidDrawCase (Context& context, const char* name, const char* desc, DrawType type, InvalidOperation op) argument
123 : TestCase (context, name, desc)
/external/deqp/modules/glshared/
H A DglsFboCompletenessTests.hpp93 const string& name, const string& desc)
95 name.c_str(), desc.c_str())
92 TestBase(Context& ctx, const string& name, const string& desc) argument
H A DglsSamplerObjectTest.hpp57 const char* desc; member in struct:deqp::gls::TextureSamplerTest::TestSpec
115 const char* desc; member in struct:deqp::gls::MultiTextureSamplerTest::TestSpec
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DPrototype.java386 * @param desc {@code non-null;} instance to make interned
389 private static Prototype putIntern(Prototype desc) { argument
391 String descriptor = desc.getDescriptor();
396 internTable.put(descriptor, desc);
397 return desc;
/external/e2fsprogs/ext2ed/
H A Dinode_com.c30 struct ext2_group_desc desc; local
44 low_read ((char *) &desc,sizeof (struct ext2_group_desc),group_offset);
46 entry_num=(device_offset-desc.bg_inode_table*file_system_info.block_size)/sizeof (struct ext2_inode);
77 struct ext2_group_desc desc; local
92 low_read ((char *) &desc,sizeof (struct ext2_group_desc),group_offset);
94 entry_num=(device_offset-desc.bg_inode_table*file_system_info.block_size)/sizeof (struct ext2_inode);
127 struct ext2_group_desc desc; local
134 low_read ((char *) &desc,sizeof (struct ext2_group_desc),group_offset);
136 entry_num=(device_offset-desc.bg_inode_table*file_system_info.block_size)/sizeof (struct ext2_inode);
288 struct ext2_group_desc desc; local
373 struct ext2_group_desc desc; local
403 struct ext2_group_desc desc; local
424 struct ext2_group_desc desc; local
[all...]
/external/e2fsprogs/tests/progs/
H A Dtest_icount.c50 static int parse_inode(const char *request, const char *desc, argument
57 com_err(request, 0, "Bad %s - %s", desc, str);
/external/javassist/src/main/javassist/bytecode/
H A DFieldInfo.java49 * @param desc field descriptor
53 public FieldInfo(ConstPool cp, String fieldName, String desc) { argument
57 descriptor = cp.addUtf8Info(desc);
180 public void setDescriptor(String desc) { argument
181 if (!desc.equals(getDescriptor()))
182 descriptor = constPool.addUtf8Info(desc);
H A DLocalVariableAttribute.java102 String desc = cp.getUtf8Info(index);
103 desc = renameEntry(desc, oldname, newname);
104 ByteArray.write16bit(cp.addUtf8Info(desc), info, pos + 6);
109 String renameEntry(String desc, String oldname, String newname) { argument
110 return Descriptor.rename(desc, oldname, newname);
120 String desc = cp.getUtf8Info(index);
121 desc = renameEntry(desc, classnames);
122 ByteArray.write16bit(cp.addUtf8Info(desc), inf
127 renameEntry(String desc, Map classnames) argument
[all...]
/external/javassist/src/main/javassist/util/proxy/
H A DRuntimeSupport.java50 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) { argument
68 Method m = findMethod2(self.getClass(), name, desc);
70 error(self, name, desc);
81 public static Method findSuperMethod(Object self, String name, String desc) { argument
83 Method m = findSuperMethod2(clazz.getSuperclass(), name, desc);
85 m = searchInterfaces(clazz, name, desc);
88 error(self, name, desc);
48 find2Methods(Object self, String superMethod, String thisMethod, int index, String desc, java.lang.reflect.Method[] methods) argument
93 error(Object self, String name, String desc) argument
98 findSuperMethod2(Class clazz, String name, String desc) argument
113 searchInterfaces(Class clazz, String name, String desc) argument
125 findMethod2(Class clazz, String name, String desc) argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dvirtio_ring.h96 struct vring_desc *desc; member in struct:vring
109 * struct vring_desc desc[num];
136 vr->desc = p;
/external/lldb/tools/lldb-perf/lib/
H A DMeasurement.h31 Measurement (Callable callable, const char* name, const char* desc) : argument
34 m_metric (Metric<typename GaugeType::ValueType>(name, desc))
38 Measurement (const char* name, const char* desc) : argument
41 m_metric (Metric<typename GaugeType::ValueType>(name, desc))
/external/llvm/include/llvm/ADT/
H A DStatistic.h47 void construct(const char *name, const char *desc) { argument
48 Name = name; Desc = desc;
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_bufmgr_mm.c177 const struct pb_desc *desc)
183 assert(pb_check_alignment(desc->alignment, (pb_size)1 << mm->align2));
184 if(!pb_check_alignment(desc->alignment, (pb_size)1 << mm->align2))
196 mm_buf->base.alignment = desc->alignment;
197 mm_buf->base.usage = desc->usage;
302 struct pb_desc desc; local
307 memset(&desc, 0, sizeof(desc));
308 desc.alignment = 1 << align2;
310 buffer = provider->create_buffer(provider, size, &desc);
175 mm_bufmgr_create_buffer(struct pb_manager *mgr, pb_size size, const struct pb_desc *desc) argument
[all...]
H A Dpb_bufmgr_ondemand.c59 struct pb_desc desc; member in struct:pb_ondemand_buffer
149 buf->buffer = provider->create_buffer(provider, buf->size, &buf->desc);
238 const struct pb_desc *desc)
248 buf->base.alignment = desc->alignment;
249 buf->base.usage = desc->usage;
255 buf->data = align_malloc(size, desc->alignment < sizeof(void*) ? sizeof(void*) : desc->alignment);
262 buf->desc = *desc;
236 pb_ondemand_manager_create_buffer(struct pb_manager *_mgr, pb_size size, const struct pb_desc *desc) argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug.h255 const char *desc; member in struct:debug_named_value
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_tex.c61 const struct util_format_description *desc; local
86 desc = util_format_description(view->pipe.format);
106 if (desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB)
113 view->pipe.u.buf.first_element * desc->block.bits / 8;
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_state_inlines.h343 const struct util_format_description *desc; local
346 desc = util_format_description(format);
348 if (desc->layout != UTIL_FORMAT_LAYOUT_PLAIN) {
354 if (desc->channel[i].type != UTIL_FORMAT_TYPE_VOID) {
359 switch (desc->channel[i].type) {
362 switch (desc->channel[i].size) {
365 if (desc->nr_channels > 2) {
372 result = R300_DATA_TYPE_FLOAT_1 + (desc->nr_channels - 1);
382 switch (desc->channel[i].size) {
387 if (desc
413 const struct util_format_description *desc = util_format_description(format); local
[all...]
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Ddevice.c245 const struct util_format_description *desc; local
250 desc = util_format_description(res->format);
251 if (desc->swizzle[0] == UTIL_FORMAT_SWIZZLE_0)
253 if (desc->swizzle[1] == UTIL_FORMAT_SWIZZLE_0)
255 if (desc->swizzle[2] == UTIL_FORMAT_SWIZZLE_0)
257 if (desc->swizzle[3] == UTIL_FORMAT_SWIZZLE_0)
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_buffer.c170 const struct pb_desc *desc)
181 buf->base.alignment = desc->alignment;
182 buf->base.usage = desc->usage;
168 vmw_gmr_bufmgr_create_buffer(struct pb_manager *_mgr, pb_size size, const struct pb_desc *desc) argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassAdapter.java73 final String desc)
75 cv.visitOuterClass(owner, name, desc);
79 final String desc,
82 return cv.visitAnnotation(desc, visible);
101 final String desc,
105 return cv.visitField(access, name, desc, signature, value);
111 final String desc,
115 return cv.visitMethod(access, name, desc, signature, exceptions);
70 visitOuterClass( final String owner, final String name, final String desc) argument
78 visitAnnotation( final String desc, final boolean visible) argument
98 visitField( final int access, final String name, final String desc, final String signature, final Object value) argument
108 visitMethod( final int access, final String name, final String desc, final String signature, final String[] exceptions) argument
H A DClassVisitor.java89 * @param desc the descriptor of the method that contains the class, or
93 void visitOuterClass(String owner, String name, String desc); argument
98 * @param desc the class descriptor of the annotation class.
103 AnnotationVisitor visitAnnotation(String desc, boolean visible); argument
140 * @param desc the field's descriptor (see {@link Type Type}).
159 String desc,
172 * @param desc the method's descriptor (see {@link Type Type}).
186 String desc,
156 visitField( int access, String name, String desc, String signature, Object value) argument
183 visitMethod( int access, String name, String desc, String signature, String[] exceptions) argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DClassNode.java179 final String desc)
183 outerMethodDesc = desc;
202 final String desc,
206 FieldNode fn = new FieldNode(access, name, desc, signature, value);
214 final String desc,
220 desc,
254 an.accept(cv.visitAnnotation(an.desc, true));
259 an.accept(cv.visitAnnotation(an.desc, false));
176 visitOuterClass( final String owner, final String name, final String desc) argument
199 visitField( final int access, final String name, final String desc, final String signature, final Object value) argument
211 visitMethod( final int access, final String name, final String desc, final String signature, final String[] exceptions) argument

Completed in 504 milliseconds

1234567891011>>