HomeSort by relevance Sort by last modified time
    Searched refs:GetDirectBufferAddress (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
frametovalues.cpp 31 unsigned char* pixelPtr = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
32 unsigned char* grayPtr = static_cast<unsigned char*>(env->GetDirectBufferAddress(grayBuffer));
57 unsigned char* pixelPtr = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
58 unsigned char* rgbPtr = static_cast<unsigned char*>(env->GetDirectBufferAddress(rgbBuffer));
pixelutils.cpp 26 uint32* pInPix = static_cast<uint32*>(env->GetDirectBufferAddress(input));
27 uint32* pOutput = static_cast<uint32*>(env->GetDirectBufferAddress(output));
histogram.cpp 41 unsigned char* pImg = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
42 int* pHist = static_cast<int*>(env->GetDirectBufferAddress(histogramBuffer));
48 pMask = static_cast<unsigned char*>(env->GetDirectBufferAddress(maskBuffer));
73 unsigned char* pixelIn = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
74 float* histOut = static_cast<float*>(env->GetDirectBufferAddress(histogramBuffer));
97 unsigned char* pixelIn = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
98 float* histOut = static_cast<float*>(env->GetDirectBufferAddress(histogramBuffer));
colorspace.cpp 58 uint8* const pInput = static_cast<uint8*>(env->GetDirectBufferAddress(input));
59 Rgba* const pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
100 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
101 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
115 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
116 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
158 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
159 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
exposure.cpp 35 unsigned char* srcPtr = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
57 unsigned char* srcPtr = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
sobeloperator.cpp 72 unsigned char* srcPtr = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
74 0 : static_cast<unsigned char*>(env->GetDirectBufferAddress(magBuffer));
76 0 : static_cast<unsigned char*>(env->GetDirectBufferAddress(dirBuffer));
brightness.cpp 36 unsigned char* srcPtr = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
contrast.cpp 36 unsigned char* srcPtr = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
stats_scorer.cpp 27 unsigned char* pImg = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
47 unsigned char* pImg = static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
  /packages/apps/Camera2/jni/
jpegutilnative.cpp 41 jbyte* y = (jbyte*)env->GetDirectBufferAddress(yBuf);
42 jbyte* cb = (jbyte*)env->GetDirectBufferAddress(cbBuf);
43 jbyte* cr = (jbyte*)env->GetDirectBufferAddress(crBuf);
44 jbyte* out = (jbyte*)env->GetDirectBufferAddress(outBuf);
  /external/chromium_org/mojo/android/system/
core_impl.cc 65 const void* buffer_start = env->GetDirectBufferAddress(buffer);
92 const void* buffer_start = env->GetDirectBufferAddress(options_buffer);
112 const void* buffer_start = env->GetDirectBufferAddress(options_buffer);
147 buffer_start = env->GetDirectBufferAddress(bytes);
156 static_cast<MojoHandle*>(env->GetDirectBufferAddress(handles_buffer));
173 buffer_start = env->GetDirectBufferAddress(bytes);
181 static_cast<MojoHandle*>(env->GetDirectBufferAddress(handles_buffer));
200 buffer_start = env->GetDirectBufferAddress(elements);
243 void* buffer_start = env->GetDirectBufferAddress(elements);
285 const void* buffer_start = env->GetDirectBufferAddress(options_buffer)
    [all...]
  /libnativehelper/include/nativehelper/
ScopedBytes.h 40 mPtr = reinterpret_cast<jbyte*>(mEnv->GetDirectBufferAddress(mObject));
  /external/chromium_org/media/base/android/
webaudio_media_codec_bridge.cc 160 static_cast<int8_t*>(env->GetDirectBufferAddress(buf));
169 int16_t* data = static_cast<int16_t*>(env->GetDirectBufferAddress(buf));
media_codec_bridge.cc 415 *data = static_cast<uint8*>(env->GetDirectBufferAddress(j_buffer.obj()));
428 reinterpret_cast<uint8*>(env->GetDirectBufferAddress(j_buffer.obj())) +
602 uint8* buffer = static_cast<uint8*>(env->GetDirectBufferAddress(buf.obj()));
  /external/chromium_org/media/audio/android/
audio_record_input.cc 44 env->GetDirectBufferAddress(byte_buffer));
  /frameworks/base/core/jni/
android_hardware_SerialPort.cpp 195 jbyte* buf = (jbyte *)env->GetDirectBufferAddress(buffer);
229 jbyte* buf = (jbyte *)env->GetDirectBufferAddress(buffer);
android_hardware_UsbRequest.cpp 148 request->buffer = env->GetDirectBufferAddress(buffer);
android_opengl_GLES10Ext.cpp 134 char* buf = (char*) _env->GetDirectBufferAddress(buffer);
  /frameworks/base/media/jni/
android_media_MediaMuxer.cpp 84 void *dst = env->GetDirectBufferAddress(byteBuf);
android_media_Utils.cpp 383 void *data = env->GetDirectBufferAddress(valueObj);
  /external/chromium_org/components/cronet/android/
org_chromium_net_UrlRequest.cc 191 void* chunk = env->GetDirectBufferAddress(chunk_byte_buffer);
  /external/chromium_org/third_party/webrtc/modules/video_render/android/
video_render_android_surface_view.cc 454 (jniEnv->GetDirectBufferAddress(_javaByteBufferObj));
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
common.cpp 112 char* buf = (char*) _env->GetDirectBufferAddress(buffer);
  /frameworks/native/opengl/tools/glgen/stubs/jsr239/
GLCHeader.cpp 171 void* buf = _env->GetDirectBufferAddress(buffer);
  /art/test/004-JniTest/
jni_test.cc 168 assert(env->GetDirectBufferAddress(byte_buffer) == &buffer[0]);

Completed in 760 milliseconds

1 2 3 4 5