Searched refs:formatA (Results 1 - 4 of 4) sorted by last modified time

/external/neven/Embedded/common/src/b_BasicEm/
H A DBasic.h132 #define bbs_ERROR0( formatA ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
133 #define bbs_ERROR1( formatA, arg1A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
134 #define bbs_ERROR2( formatA, arg1A, arg2A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
135 #define bbs_ERROR3( formatA, arg1A, arg2A, arg3A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
136 #define bbs_ERROR4( formatA, arg1A, arg2A, arg3A, arg4A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
137 #define bbs_ERROR5( formatA, arg1A, arg2A, arg3A, arg4A, arg5A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
139 #define bbs_ERR0( errorA, formatA ) bbs_Context_pushError( cpA, bbs_Error_create( errorA, __LINE__, __FILE__, NULL ) )
140 #define bbs_ERR1( errorA, formatA, arg1A ) bbs_Context_pushError( cpA, bbs_Error_create( errorA, __LINE__, __FILE__, NULL ) )
141 #define bbs_ERR2( errorA, formatA, arg1A, arg2A ) bbs_Context_pushError( cpA, bbs_Error_create( errorA, __LINE__, __FILE__, NULL ) )
142 #define bbs_ERR3( errorA, formatA, arg1
[all...]
H A DString.c144 uint32 bbs_snprintf( char* bufA, uint32 bufSizeA, const char* formatA, ... ) argument
148 va_start( argsL, formatA );
149 sizeL = bbs_vsnprintf( bufA, bufSizeA, formatA, argsL );
203 uint32 bbs_vsnprintf( char* bufA, uint32 bufSizeA, const char* formatA, va_list argsA ) argument
205 const char* fpL = formatA;
H A DString.h62 uint32 bbs_snprintf( char* dstA, uint32 bufSizeA, const char* formatA, ... );
67 uint32 bbs_vsnprintf( char* dstA, uint32 bufSizeA, const char* formatA, va_list argsA );
/external/deqp/modules/gles31/functional/
H A Des31fCopyImageTests.cpp300 deUint32 getMoreRestrictiveFormat (deUint32 formatA, deUint32 formatB) argument
302 if (formatA == formatB)
303 return formatA;
304 else if (glu::isCompressedFormat(formatA) && isAstcFormat(glu::mapGLCompressedTexFormat(formatA)))
305 return formatA;
308 else if (isFloatFormat(formatA))
312 return formatA;
316 DE_ASSERT(!isFloatFormat(formatA));
320 else if (glu::isCompressedFormat(formatA))
[all...]

Completed in 142 milliseconds