/aosp12/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
H A D | glDispatchComputeIndirect.cpp | 2 static void android_glDispatchComputeIndirect(JNIEnv *_env, jobject, jlong indirect) { in android_glDispatchComputeIndirect() argument 7 if (sizeof(GLintptr) != sizeof(jlong) && (indirect < LONG_MIN || indirect > LONG_MAX)) { in android_glDispatchComputeIndirect() 11 glDispatchComputeIndirect((GLintptr)indirect); in android_glDispatchComputeIndirect()
|
H A D | glDrawArraysIndirect.cpp | 2 static void android_glDrawArraysIndirect(JNIEnv *_env, jobject, int mode, jlong indirect) { in android_glDrawArraysIndirect() argument 6 if (sizeof(void*) != sizeof(jlong) && indirect > static_cast<jlong>(UINT32_MAX)) { in android_glDrawArraysIndirect() 10 glDrawArraysIndirect(mode, (const void*)indirect); in android_glDrawArraysIndirect()
|
H A D | glDrawElementsIndirect.cpp | 2 … void android_glDrawElementsIndirect(JNIEnv *_env, jobject, jint mode, jint type, jlong indirect) { in android_glDrawElementsIndirect() argument 6 if (sizeof(void*) != sizeof(jlong) && indirect > static_cast<jlong>(UINT32_MAX)) { in android_glDrawElementsIndirect() 10 glDrawElementsIndirect(mode, type, (const void*)indirect); in android_glDrawElementsIndirect()
|
H A D | glDispatchComputeIndirect.java | 3 public static native void glDispatchComputeIndirect(long indirect); in glDispatchComputeIndirect() argument
|
H A D | glDrawArraysIndirect.java | 3 public static native void glDrawArraysIndirect(int mode, long indirect); in glDrawArraysIndirect() argument
|
H A D | glDrawElementsIndirect.java | 3 public static native void glDrawElementsIndirect(int mode, int type, long indirect); in glDrawElementsIndirect() argument
|
/aosp12/hardware/interfaces/keymaster/3.0/vts/functional/ |
H A D | authorization_set.cpp | 203 std::ostream& indirect; member 220 auto offset = out.indirect.tellp(); in serializeParamValue() 275 std::stringstream indirect; in serialize() local 277 OutStreams streams = {indirect, elements}; in serialize() 281 if (indirect.bad() || elements.bad()) { in serialize() 285 auto pos = indirect.tellp(); in serialize() 302 if (indirect_size) out << indirect.rdbuf(); in serialize() 316 std::istream& indirect; member 326 in.indirect.seekg(offset); in deserializeParamValue() 399 std::stringstream indirect(indirect_buffer); in deserialize() local [all …]
|
/aosp12/hardware/interfaces/keymaster/4.0/support/ |
H A D | authorization_set.cpp | 204 std::ostream& indirect; member 222 auto offset = out.indirect.tellp(); in serializeParamValue() 289 std::stringstream indirect; in serialize() local 291 OutStreams streams = {indirect, elements, 0}; in serialize() 295 if (indirect.bad() || elements.bad()) { in serialize() 299 auto pos = indirect.tellp(); in serialize() 316 if (indirect_size) out << indirect.rdbuf(); in serialize() 330 std::istream& indirect; member 341 in.indirect.seekg(offset); in deserializeParamValue() 420 std::stringstream indirect(indirect_buffer); in deserialize() local [all …]
|
/aosp12/frameworks/compile/mclinker/include/mcld/LD/ |
H A D | DiagSymbolResolutions.inc | 27 "indirect symbol %0 points to a common symbol", 28 "indirect symbol %0 points to a common symbol") 31 "indirect symbol %0 points to a undefined symbol",
|
/aosp12/frameworks/native/opengl/tools/glgen/specs/gles11/ |
H A D | GLES31.spec | 2 void glDispatchComputeIndirect ( GLintptr indirect ) 3 void glDrawArraysIndirect ( GLenum mode, const void *indirect ) 4 void glDrawElementsIndirect ( GLenum mode, GLenum type, const void *indirect )
|
/aosp12/build/make/tools/rbcrun/ |
H A D | go.mod | 4 github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d // indirect
|
/aosp12/frameworks/base/opengl/java/android/opengl/ |
H A D | GLES31.java | 219 public static native void glDispatchComputeIndirect(long indirect); in glDispatchComputeIndirect() argument 223 public static native void glDrawArraysIndirect(int mode, long indirect); in glDrawArraysIndirect() argument 227 public static native void glDrawElementsIndirect(int mode, int type, long indirect); in glDrawElementsIndirect() argument
|
/aosp12/system/sepolicy/ |
H A D | NOTICE | 17 consequential, direct or indirect damages arising from the software or
|
/aosp12/system/gatekeeper/ |
H A D | Android.bp | 46 clang_cflags: ["-fno-sanitize-coverage=edge,indirect-calls,8bit-counters,trace-cmp"],
|
/aosp12/frameworks/base/core/proto/android/os/ |
H A D | header.proto | 42 // Only use bytes type here to avoid indirect dependency on atoms.proto
|
/aosp12/art/runtime/ |
H A D | alloc_instrumentation.md | 6 When we call an allocation routine, we always indirect through a thread-local function table that
|
/aosp12/frameworks/native/opengl/tools/glgen/stubs/jsr239/ |
H A D | GLImplHeader.java-impl | 81 "Application %s (SDK target %d) called a GL11 Pointer method with an indirect Buffer.",
|
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
H A D | bitfield.rscript | 93 // to convert indirect accesses through nbf/bf into direct
|
/aosp12/frameworks/base/core/jni/ |
H A D | android_opengl_GLES31.cpp | 433 static void android_glDispatchComputeIndirect(JNIEnv *_env, jobject, jlong indirect) { in android_glDispatchComputeIndirect() argument 438 if (sizeof(GLintptr) != sizeof(jlong) && (indirect < LONG_MIN || indirect > LONG_MAX)) { in android_glDispatchComputeIndirect() 442 glDispatchComputeIndirect((GLintptr)indirect); in android_glDispatchComputeIndirect() 446 static void android_glDrawArraysIndirect(JNIEnv *_env, jobject, int mode, jlong indirect) { in android_glDrawArraysIndirect() argument 450 if (sizeof(void*) != sizeof(jlong) && indirect > static_cast<jlong>(UINT32_MAX)) { in android_glDrawArraysIndirect() 454 glDrawArraysIndirect(mode, (const void*)indirect); in android_glDrawArraysIndirect() 458 … void android_glDrawElementsIndirect(JNIEnv *_env, jobject, jint mode, jint type, jlong indirect) { in android_glDrawElementsIndirect() argument 462 if (sizeof(void*) != sizeof(jlong) && indirect > static_cast<jlong>(UINT32_MAX)) { in android_glDrawElementsIndirect() 466 glDrawElementsIndirect(mode, type, (const void*)indirect); in android_glDrawElementsIndirect()
|
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
H A D | bitfield.rscript | 95 // to convert indirect accesses through nbf/bf into direct
|
/aosp12/frameworks/compile/slang/lit-tests/padding/ |
H A D | bitfield.rscript | 82 // to convert indirect accesses through nbf/bf into direct
|
/aosp12/packages/services/Telephony/testapps/TestRcsApp/aosp_test_rcsclient/ |
H A D | LICENSE | 18 "control" means (i) the power, direct or indirect, to cause the 157 liable to You for damages, including any direct, indirect, special,
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/about/res/raw/ |
H A D | third_party_licenses | 35 "control" means (i) the power, direct or indirect, to cause the 174 liable to You for damages, including any direct, indirect, special, 217 "control" means (i) the power, direct or indirect, to cause the 423 "control" means (i) the power, direct or indirect, to cause the 629 "control" means (i) the power, direct or indirect, to cause the 835 "control" means (i) the power, direct or indirect, to cause the 1041 "control" means (i) the power, direct or indirect, to cause the 1259 "control" means (i) the power, direct or indirect, to cause the 1453 "control" means (i) the power, direct or indirect, to cause the 1647 "control" means (i) the power, direct or indirect, to cause the [all …]
|
/aosp12/packages/inputmethods/LatinIME/java/ |
H A D | NOTICE | 31 "control" means (i) the power, direct or indirect, to cause the 170 liable to You for damages, including any direct, indirect, special,
|
/aosp12/hardware/libhardware/ |
H A D | NOTICE | 31 "control" means (i) the power, direct or indirect, to cause the 170 liable to You for damages, including any direct, indirect, special,
|