Searched defs:config (Results 26 - 50 of 146) sorted by relevance

123456

/frameworks/compile/libbcc/lib/Core/
H A DCompiler.cpp43 "Invalid compiler config supplied (getTarget() returns NULL.) "
51 " (missing call to Compiler::config()?)",
103 enum ErrorCode err = config(pConfig);
113 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) { function in class:Compiler
H A DLinker.cpp56 "Linker::config() is not called",
92 enum ErrorCode err = config(pConfig);
121 enum Linker::ErrorCode Linker::config(const LinkerConfig& pConfig) { function in class:Linker
/frameworks/compile/mclinker/unittests/Linker/
H A DTestLinker.h42 MCLDInfo* config() { function in class:mcld::test::TestLinker
47 const MCLDInfo* config() const { function in class:mcld::test::TestLinker
/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp66 egl_surface_t::egl_surface_t(egl_display_t* dpy, EGLConfig config, argument
69 egl_object_t(dpy), surface(surface), config(config), win(win), cnx(cnx)
89 egl_context_t::egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config, argument
92 config(config), read(0), draw(0), cnx(cnx), version(version) {
H A Degl_object.h134 egl_surface_t(egl_display_t* dpy, EGLConfig config,
139 EGLConfig config; member in class:android::egl_surface_t
150 egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config,
158 EGLConfig config; member in class:android::egl_context_t
/frameworks/native/opengl/tests/fillrate/
H A Dfillrate.cpp43 EGLConfig config; local
54 dpy, configAttribs, window, &config);
60 surface = eglCreateWindowSurface(dpy, config, window, NULL);
61 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java83 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/lighting1709/src/com/android/lightingtest/
H A DClearActivity.java70 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/swapinterval/
H A Dswapinterval.cpp41 EGLConfig config; local
56 dpy, configAttribs, window, &config);
64 eglGetConfigAttrib(dpy, config, EGL_RED_SIZE, &r);
65 eglGetConfigAttrib(dpy, config, EGL_GREEN_SIZE, &g);
66 eglGetConfigAttrib(dpy, config, EGL_BLUE_SIZE, &b);
67 eglGetConfigAttrib(dpy, config, EGL_ALPHA_SIZE, &a);
68 eglGetConfigAttrib(dpy, config, EGL_NATIVE_VISUAL_ID, &vid);
70 surface = eglCreateWindowSurface(dpy, config, window, NULL);
73 fprintf(stderr, "error: %s, config=%p, format = %d-%d-%d-%d, visual-id = %d\n",
74 EGLUtils::strerror(err), config,
[all...]
/frameworks/native/opengl/tools/glgen/stubs/egl/
H A DeglCreateWindowSurface.cpp1 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
4 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
10 EGLConfig config_native = (EGLConfig) fromEGLHandle(_env, eglconfigGetHandleID, config);
78 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
81 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
87 EGLConfig config_native = (EGLConfig) fromEGLHandle(_env, eglconfigGetHandleID, config);
3 android_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
80 android_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
/frameworks/rs/driver/
H A DrsdGL.cpp88 static void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
129 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
258 // Try minding a multisample config that matches the user request
283 // The first config is guaranteed to over-satisfy the constraints
284 dc->gl.egl.config = configs[0];
307 dc->gl.egl.config = configs[i];
316 printEGLConfiguration(dc->gl.egl.display, dc->gl.egl.config);
321 dc->gl.egl.context = eglCreateContext(dc->gl.egl.display, dc->gl.egl.config,
336 dc->gl.egl.surfaceDefault = eglCreateWindowSurface(dc->gl.egl.display, dc->gl.egl.config,
454 dc->gl.egl.surface = eglCreateWindowSurface(dc->gl.egl.display, dc->gl.egl.config,
[all...]
H A DrsdGL.h37 EGLConfig config; member in struct:RsdGLRec::__anon1536
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
H A Daacenc_core.h28 #include "config.h"
51 AACENC_CONFIG config; /* Word16 size: 8 */ member in struct:__anon516
87 void AacInitDefaultConfig(AACENC_CONFIG *config);
98 const AACENC_CONFIG config); /* pre-initialized config struct */
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc.c40 AACENC_CONFIG config; local
137 AACENC_CONFIG config; local
138 config.adtsUsed = 1;
139 config.bitRate = 128000;
140 config.nChannelsIn = 2;
141 config.nChannelsOut = 2;
142 config.sampleRate = 44100;
143 config.bandWidth = 20000;
145 AacEncOpen(hAacEnc, config);
185 length = min(hAacEnc->config
313 AACENC_CONFIG config; local
[all...]
/frameworks/compile/libbcc/tools/mcld/
H A DMain.cpp187 LinkerConfig* config = NULL; local
190 config = new (std::nothrow) DefaultLinkerConfig();
192 config = new (std::nothrow) LinkerConfig(OptTargetTriple);
194 if (config == NULL) {
203 config->setSOName(OptSOName);
205 config->setSOName(pOutputFilename);
210 config->setSysRoot(OptSysRoot);
215 config->setDyld(OptDyld);
221 config->addWrap(*wrap);
227 config
[all...]
/frameworks/compile/mclinker/tools/mcld/lib/Core/
H A DLinker.cpp49 "Linker::config() is not called",
85 enum ErrorCode err = config(pConfig);
114 enum Linker::ErrorCode Linker::config(const LinkerConfig& pConfig) { function in class:Linker
/frameworks/compile/mclinker/tools/mcld/
H A Dmain.cpp180 LinkerConfig* config = NULL; local
183 config = new (std::nothrow) DefaultLinkerConfig();
185 config = new (std::nothrow) LinkerConfig(OptTargetTriple);
187 if (config == NULL) {
196 config->setSOName(OptSOName);
198 config->setSOName(pOutputFilename);
203 config->setSysRoot(OptSysRoot);
208 config->setDyld(OptDyld);
214 config->addWrap(*wrap);
220 config
[all...]
/frameworks/native/opengl/tests/angeles/
H A Dapp-linux.cpp133 EGLConfig config; local
144 dpy, configAttribs, window, &config);
150 surface = eglCreateWindowSurface(dpy, config, window, NULL);
155 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/native/opengl/tests/testViewport/src/com/android/test/
H A DTestView.java245 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/base/core/jni/
H A Dandroid_media_AudioSystem.cpp166 android_media_AudioSystem_setForceUse(JNIEnv *env, jobject thiz, jint usage, jint config) argument
169 static_cast <audio_policy_forced_cfg_t>(config)));
/frameworks/base/test-runner/src/android/test/mock/
H A DMockResources.java46 public void updateConfiguration(Configuration config, DisplayMetrics metrics) { argument
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeResources.java95 Configuration config,
100 config,
117 Configuration config, IProjectCallback projectCallback) {
118 super(assets, metrics, config);
92 initSystem(BridgeContext context, AssetManager assets, DisplayMetrics metrics, Configuration config, IProjectCallback projectCallback) argument
116 BridgeResources(BridgeContext context, AssetManager assets, DisplayMetrics metrics, Configuration config, IProjectCallback projectCallback) argument
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp24 #include <llvm/Config/config.h>
187 CompilerConfig *config = NULL; local
190 config = new (std::nothrow) DefaultCompilerConfig();
192 config = new (std::nothrow) CompilerConfig(OptTargetTriple);
194 if (config == NULL) {
199 // Setup the config according to the valud of command line option.
201 config->setRelocationModel(llvm::Reloc::PIC_);
204 case '0': config->setOptimizationLevel(llvm::CodeGenOpt::None); break;
205 case '1': config->setOptimizationLevel(llvm::CodeGenOpt::Less); break;
206 case '3': config
[all...]
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp178 void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
219 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java141 for(EGLConfig config : configs) {
142 int d = findConfigAttrib(egl, display, config,
144 int s = findConfigAttrib(egl, display, config,
147 int r = findConfigAttrib(egl, display, config,
149 int g = findConfigAttrib(egl, display, config,
151 int b = findConfigAttrib(egl, display, config,
153 int a = findConfigAttrib(egl, display, config,
161 closestConfig = config;
169 EGLConfig config, int attribute, int defaultValue) {
171 if (egl.eglGetConfigAttrib(display, config, attribut
168 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
187 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
291 onSurfaceCreated(GL10 gl, EGLConfig config) argument
[all...]

Completed in 1164 milliseconds

123456