/external/clang/test/Modules/Inputs/initializer_list/ |
indirect.modulemap | 1 module initializer_list { header "indirect.h" }
|
/external/e2fsprogs/tests/f_badjour_indblks/ |
name | 1 corruption in journal inode's indirect blocks
|
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glDispatchComputeIndirect.java | 1 // C function void glDispatchComputeIndirect ( GLintptr indirect ); 3 public static native void glDispatchComputeIndirect(long indirect);
|
glDrawArraysIndirect.java | 1 // C function void glDrawArraysIndirect ( GLenum mode, const void *indirect ); 3 public static native void glDrawArraysIndirect(int mode, long indirect);
|
glDrawElementsIndirect.java | 1 // C function glDrawElementsIndirect ( GLenum mode, GLenum type, const void *indirect ); 3 public static native void glDrawElementsIndirect(int mode, int type, long indirect);
|
glDispatchComputeIndirect.cpp | 1 /* void glDispatchComputeIndirect ( GLintptr indirect ) */ 2 static void android_glDispatchComputeIndirect(JNIEnv *_env, jobject, jlong indirect) { 3 // 'indirect' is a byte offset, not a pointer. GL checks for negative and too-large values. 7 if (sizeof(GLintptr) != sizeof(jlong) && (indirect < LONG_MIN || indirect > LONG_MAX)) { 8 jniThrowException(_env, "java/lang/IllegalArgumentException", "indirect offset too large"); 11 glDispatchComputeIndirect((GLintptr)indirect);
|
glDrawArraysIndirect.cpp | 1 /* void glDrawArraysIndirect ( GLenum mode, const void *indirect ) */ 2 static void android_glDrawArraysIndirect(JNIEnv *_env, jobject, int mode, jlong indirect) { 3 // In OpenGL ES, 'indirect' is a byte offset into a buffer, not a raw pointer. 6 if (sizeof(void*) != sizeof(jlong) && indirect > static_cast<jlong>(UINT32_MAX)) { 7 jniThrowException(_env, "java/lang/IllegalArgumentException", "indirect offset too large"); 10 glDrawArraysIndirect(mode, (const void*)indirect);
|
glDrawElementsIndirect.cpp | 1 /* void glDrawElementsIndirect ( GLenum mode, GLenum type, const void *indirect ) */ 2 static void android_glDrawElementsIndirect(JNIEnv *_env, jobject, jint mode, jint type, jlong indirect) { 3 // In OpenGL ES, 'indirect' is a byte offset into a buffer, not a raw pointer. 6 if (sizeof(void*) != sizeof(jlong) && indirect > static_cast<jlong>(UINT32_MAX)) { 7 jniThrowException(_env, "java/lang/IllegalArgumentException", "indirect offset too large"); 10 glDrawElementsIndirect(mode, type, (const void*)indirect);
|
/external/clang/test/Modules/Inputs/elsewhere/ |
module.map | 1 module c_library_indirect { header "c-header-indirect.h" }
|
/external/elfutils/tests/ |
run-readelf-macro.sh | 84 #define __STDC__ 1, line 1 (indirect) 85 #define __STDC_HOSTED__ 1, line 1 (indirect) 86 #define __GNUC__ 4, line 1 (indirect) 87 #define __GNUC_MINOR__ 7, line 1 (indirect) 88 #define __GNUC_PATCHLEVEL__ 1, line 1 (indirect) 89 #define __VERSION__ "4.7.1 20120629 (Red Hat 4.7.1-1)", line 1 (indirect) 90 #define __GNUC_RH_RELEASE__ 1, line 1 (indirect) 91 #define __ATOMIC_RELAXED 0, line 1 (indirect) 92 #define __ATOMIC_SEQ_CST 5, line 1 (indirect) 93 #define __ATOMIC_ACQUIRE 2, line 1 (indirect) [all...] |
run-readelf-zdebug.sh | 102 #define UINT64_MAX 18446744073709551615UL, line 1 (indirect) 110 #define __STDC__ 1, line 1 (indirect) 111 #define __STDC_HOSTED__ 1, line 1 (indirect) 112 #define __GNUC__ 4, line 1 (indirect) 113 #define __GNUC_MINOR__ 8, line 1 (indirect) 114 #define __GNUC_PATCHLEVEL__ 2, line 1 (indirect) 115 #define __VERSION__ "4.8.2 20140120 (Red Hat 4.8.2-15)", line 1 (indirect) 116 #define __GNUC_RH_RELEASE__ 15, line 1 (indirect) 117 #define __ATOMIC_RELAXED 0, line 1 (indirect) 118 #define __ATOMIC_SEQ_CST 5, line 1 (indirect) [all...] |
/external/mesa3d/src/glx/ |
.gitignore | 5 indirect.c 6 indirect.h
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/d10v/ |
address-002.s | 1 ;; Test unsupported indirect addressing
|
address-003.s | 1 ;; Test unsupported indirect addressing
|
address-004.s | 1 ;; Test unsupported indirect addressing
|
address-005.s | 1 ;; Test unsupported indirect addressing
|
address-006.s | 1 ;; Test unsupported indirect addressing
|
address-007.s | 1 ;; Test unsupported indirect addressing
|
address-008.s | 1 ;; Test unsupported indirect addressing
|
address-009.s | 1 ;; Test unsupported indirect addressing
|
address-010.s | 1 ;; Test unsupported indirect addressing
|
address-011.s | 1 ;; Test unsupported indirect addressing
|
address-012.s | 1 ;; Test unsupported indirect addressing
|
address-013.s | 1 ;; Test unsupported indirect addressing
|
address-014.s | 1 ;; Test unsupported indirect addressing
|