/external/libopus/celt/ |
entenc.c | 60 static int ec_write_byte(ec_enc *_this,unsigned _value){ 61 if(_this->offs+_this->end_offs>=_this->storage)return -1; 62 _this->buf[_this->offs++]=(unsigned char)_value; 66 static int ec_write_byte_at_end(ec_enc *_this,unsigned _value){ 67 if(_this->offs+_this->end_offs>=_this->storage)return -1 [all...] |
entdec.c | 91 static int ec_read_byte(ec_dec *_this){ 92 return _this->offs<_this->storage?_this->buf[_this->offs++]:0; 95 static int ec_read_byte_from_end(ec_dec *_this){ 96 return _this->end_offs<_this->storage? 97 _this->buf[_this->storage-++(_this->end_offs)]:0 [all...] |
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glGetBooleanv.cpp | 4 (JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) { 6 _env, _this, pname, params_ref, offset); 12 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { 14 _env, _this, pname, params_buf);
|
glGetFloatv.cpp | 4 (JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) { 6 _env, _this, pname, params_ref, offset); 12 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { 14 _env, _this, pname, params_buf);
|
glGetIntegerv.cpp | 4 (JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) { 6 _env, _this, pname, params_ref, offset); 12 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { 14 _env, _this, pname, params_buf);
|
glDebugMessageCallbackKHR.cpp | 3 android_glDebugMessageCallbackKHR(JNIEnv *_env, jobject _this, jobject callback) {
|
glGetPointervKHR.cpp | 3 android_glGetDebugMessageCallbackKHR(JNIEnv *_env, jobject _this) {
|
glCreateShaderProgramv.cpp | 4 (JNIEnv *_env, jobject _this, jint type, jobjectArray strings) {
|
glGetObjectLabelKHR.cpp | 3 android_glGetObjectLabelKHR(JNIEnv *_env, jobject _this, jint identifier, jint name) {
|
glGetObjectPtrLabelKHR.cpp | 3 android_glGetObjectPtrLabelKHR(JNIEnv *_env, jobject _this, jlong ptr) {
|
glGetProgramResourceName.cpp | 4 (JNIEnv *_env, jobject _this, jint program, jint programInterface, jint index) {
|
glGetStringi.cpp | 4 (JNIEnv *_env, jobject _this, jint name, jint index) {
|
glObjectPtrLabelKHR.cpp | 3 android_glObjectPtrLabelKHR(JNIEnv *_env, jobject _this, jlong ptr, jstring label) {
|
glBindVertexBuffer.cpp | 4 (JNIEnv *_env, jobject _this, jint bindingindex, jint buffer, jlong offset, jint stride) {
|
glGetBufferPointerv.cpp | 4 (JNIEnv *_env, jobject _this, jint target, jint pname) {
|
glGetDebugMessageLogKHR.cpp | 4 (JNIEnv *_env, jobject _this, jint count, jint bufSize, jintArray sources_ref, jint sourcesOffset, jintArray types_ref, jint typesOffset, jintArray ids_ref, jint idsOffset, jintArray severities_ref, jint severitiesOffset, jintArray lengths_ref, jint lengthsOffset, jbyteArray messageLog_ref, jint messageLogOffset) { 12 (JNIEnv *_env, jobject _this, jint count, jobject sources_ref, jobject types_ref, jobject ids_ref, jobject severities_ref, jobject lengths_ref, jobject messageLog_ref) { 20 (JNIEnv *_env, jobject _this, jint count, jintArray sources_ref, jint sourcesOffset, jintArray types_ref, jint typesOffset, jintArray ids_ref, jint idsOffset, jintArray severities_ref, jint severitiesOffset) { 28 (JNIEnv *_env, jobject _this, jint count, jobject sources_ref, jobject types_ref, jobject ids_ref, jobject severities_ref) {
|
glMapBufferRange.cpp | 4 (JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) {
|
glShaderSource.cpp | 6 (JNIEnv *_env, jobject _this, jint shader, jstring string) {
|
glDrawElementsInstanced.cpp | 4 (JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf, jint instanceCount) { 30 (JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint indicesOffset, jint instanceCount) {
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
eglGetDisplay.cpp | 4 (JNIEnv *_env, jobject _this, jlong display_id) { 15 (JNIEnv *_env, jobject _this, jint display_id) { 22 return android_eglGetDisplay(_env, _this, display_id);
|
eglQueryString.cpp | 4 (JNIEnv *_env, jobject _this, jobject dpy, jint name) {
|
/external/neven/ |
FaceDetector_jni.cpp | 94 (JNIEnv *_env, jclass _this) 96 gFaceDetectorOffsets.fd = _env->GetFieldID(_this, "mFD", "J"); 97 gFaceDetectorOffsets.sdk = _env->GetFieldID(_this, "mSDK", "J"); 98 gFaceDetectorOffsets.dcr = _env->GetFieldID(_this, "mDCR", "J"); 99 gFaceDetectorOffsets.width = _env->GetFieldID(_this, "mWidth", "I"); 100 gFaceDetectorOffsets.height = _env->GetFieldID(_this, "mHeight", "I"); 101 gFaceDetectorOffsets.maxFaces = _env->GetFieldID(_this, "mMaxFaces", "I"); 102 gFaceDetectorOffsets.bwbuffer = _env->GetFieldID(_this, "mBWBuffer", "[B"); 117 initialize(JNIEnv *_env, jobject _this, 171 _env->SetLongField(_this, gFaceDetectorOffsets.fd, (jlong)fd) [all...] |
/frameworks/base/core/jni/ |
android_opengl_GLES10.cpp | 346 (JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) { 402 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { 448 (JNIEnv *_env, jobject _this, jint texture) { 457 (JNIEnv *_env, jobject _this, jint func, jfloat ref) { 467 (JNIEnv *_env, jobject _this, jint func, jint ref) { 477 (JNIEnv *_env, jobject _this, jint target, jint texture) { 487 (JNIEnv *_env, jobject _this, jint sfactor, jint dfactor) { 497 (JNIEnv *_env, jobject _this, jint mask) { 506 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) { 518 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) [all...] |
com_google_android_gles_jni_EGLImpl.cpp | 119 static jboolean jni_eglInitialize(JNIEnv *_env, jobject _this, jobject display, 142 static jboolean jni_eglQueryContext(JNIEnv *_env, jobject _this, jobject display, 161 static jboolean jni_eglQuerySurface(JNIEnv *_env, jobject _this, jobject display, 187 static jboolean jni_eglReleaseThread(JNIEnv *_env, jobject _this) { 191 static jboolean jni_eglChooseConfig(JNIEnv *_env, jobject _this, jobject display, 226 static jlong jni_eglCreateContext(JNIEnv *_env, jobject _this, jobject display, 242 static jlong jni_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject display, 267 static void jni_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject out_sur, 312 static jlong jni_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject display, 339 static jlong jni_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject display [all...] |
/frameworks/support/v8/renderscript/jni/ |
android_rscompat_usage_io.cpp | 9 extern "C" void AllocationSetSurface(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc, jobject sur, dispatchTable dispatchTab)
|