/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
LabelMaker.java | 127 Bitmap.Config config = mFullColor ? local 128 Bitmap.Config.ARGB_4444 : Bitmap.Config.ALPHA_8; 129 mBitmap = Bitmap.createBitmap(mStrikeWidth, mStrikeHeight, config);
|
/device/huawei/angler/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_stream.c | 76 mm_camera_stream_config_t *config); 550 mm_camera_stream_config_t *config = local 553 rc = mm_stream_config(my_obj, config); 614 mm_camera_stream_config_t *config = local 617 rc = mm_stream_config(my_obj, config); 887 * @config : stream configuration 894 mm_camera_stream_config_t *config) 899 my_obj->stream_info = config->stream_info; 900 my_obj->buf_num = (uint8_t) config->stream_info->num_bufs; 901 my_obj->mem_vtbl = config->mem_vtbl [all...] |
/device/lge/bullhead/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_stream.c | 76 mm_camera_stream_config_t *config); 550 mm_camera_stream_config_t *config = local 553 rc = mm_stream_config(my_obj, config); 614 mm_camera_stream_config_t *config = local 617 rc = mm_stream_config(my_obj, config); 887 * @config : stream configuration 894 mm_camera_stream_config_t *config) 899 my_obj->stream_info = config->stream_info; 900 my_obj->buf_num = (uint8_t) config->stream_info->num_bufs; 901 my_obj->mem_vtbl = config->mem_vtbl [all...] |
/device/linaro/hikey/audio/ |
audio_hw.c | 78 struct pcm_config config; member in struct:alsa_stream_out 100 out->config.start_threshold = PLAYBACK_PERIOD_START_THRESHOLD * PERIOD_SIZE; 101 out->config.avail_min = PERIOD_SIZE; 103 out->pcm = pcm_open(CARD_OUT, PORT_CODEC, PCM_OUT | PCM_MMAP | PCM_NOIRQ | PCM_MONOTONIC, &out->config); 120 return out->config.rate; 145 return audio_channel_out_mask_from_count(out->config.channels); 152 return audio_format_from_pcm_format(out->config.format); 233 return (PERIOD_SIZE * PLAYBACK_PERIOD_COUNT * 1000) / out->config.rate; 302 size_t kernel_buffer_size = out->config.period_size * out->config.period_count [all...] |
/device/moto/shamu/camera/QCamera2/HAL/ |
QCameraStateMachine.h | 135 cam_pp_offline_src_config_t *config; member in struct:qcamera::__anon5776
|
/external/autotest/client/deps/nvmap_compactor/src/ |
nvmap_carveout_compactor.c | 663 EGLConfig config; local 689 if ( !eglChooseConfig(egl_display, attr, &config, 1, &numConfig)) { 690 fprintf(stderr, "EGL failed to choose config. Exiting...\n"); 700 egl_surface = eglCreateWindowSurface(egl_display, config, win, NULL); 706 egl_context = eglCreateContext(egl_display, config, EGL_NO_CONTEXT,
|
/external/curl/src/ |
tool_metalink.c | 659 int metalink_check_hash(struct GlobalConfig *config, 664 fprintf(config->errors, "Metalink: validating (%s)...\n", filename); 666 fprintf(config->errors, 671 mlfile->checksum->digest, config->errors); 794 int parse_metalink(struct OperationConfig *config, struct OutStruct *outs, 809 fprintf(config->global->errors, "Metalink: parsing (%s) WARNING " 819 fprintf(config->global->errors, "Metalink: parsing (%s) WARNING " 824 if(config->url_get || 825 ((config->url_get = config->url_list) != NULL)) 875 struct OperationConfig *config = outs->config; local [all...] |
/external/deqp/executor/ |
xeTestResultParser.cpp | 612 ri::EglConfig* config = curList->allocItem<ri::EglConfig>(); local 613 config->bufferSize = toInt(getAttribute("BufferSize")); 614 config->redSize = toInt(getAttribute("RedSize")); 615 config->greenSize = toInt(getAttribute("GreenSize")); 616 config->blueSize = toInt(getAttribute("BlueSize")); 617 config->luminanceSize = toInt(getAttribute("LuminanceSize")); 618 config->alphaSize = toInt(getAttribute("AlphaSize")); 619 config->alphaMaskSize = toInt(getAttribute("AlphaMaskSize")); 620 config->bindToTextureRGB = toBool(getAttribute("BindToTextureRGB")); 621 config->bindToTextureRGBA = toBool(getAttribute("BindToTextureRGBA")) [all...] |
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelineSamplerTests.cpp | 621 const TestCaseConfig& config = testCaseConfigs[configNdx]; local 623 samplerLodTests->addChild(new SamplerLodTest(testCtx, config.name, config.description, imageViewType, imageFormat, mipmapMode, config.minLod, config.maxLod, config.mipLodBias, config.lod)); 744 const TestCaseConfig& config = testCaseConfigs[configNdx]; local 747 getAddressModesCaseName(config.u, config.v, config.w, config.border).c_str() [all...] |
/external/deqp/modules/egl/ |
teglCreateContextExtTests.cpp | 181 void executeForSurface (EGLConfig config, EGLSurface surface); 889 const EGLConfig config = m_configs[m_iteration]; local 890 const EGLint surfaceTypes = eglu::getConfigAttribInt(egl, m_display, config, EGL_SURFACE_TYPE); 891 const EGLint configId = eglu::getConfigAttribInt(egl, m_display, config, EGL_CONFIG_ID); 902 eglu::UniqueSurface surface (egl, m_display, egl.createPbufferSurface(m_display, config, attribList)); 905 executeForSurface(config, *surface); 911 de::UniquePtr<eglu::NativeWindow> window (factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_display, config, DE_NULL, eglu::WindowParams(256, 256, eglu::parseWindowVisibility(m_testCtx.getCommandLine())))); 912 eglu::UniqueSurface surface (egl, m_display, eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *window, m_display, config, DE_NULL)); 914 executeForSurface(config, *surface); 920 de::UniquePtr<eglu::NativePixmap> pixmap (factory.createPixmap(&m_eglTestCtx.getNativeDisplay(), m_display, config, DE_NULL, 256, 256)) [all...] |
teglGLES2SharingTests.cpp | 102 EGLContext createContext (EGLDisplay display, EGLContext share, EGLConfig config); 128 EGLContext GLES2SharingTest::createContext (EGLDisplay display, EGLContext share, EGLConfig config) 140 context = egl.createContext(display, config, share, attriblist); 159 EGLConfig config; local 173 config = eglu::chooseSingleConfig(egl, *display, attribList); 178 de::UniquePtr<eglu::NativeWindow> window (windowFactory.createWindow(&m_eglTestCtx.getNativeDisplay(), *display, config, DE_NULL, eglu::WindowParams(480, 480, eglu::parseWindowVisibility(m_testCtx.getCommandLine())))); 179 eglu::UniqueSurface surface (egl, *display, eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *window, *display, config, DE_NULL)); 182 contextA = createContext(*display, EGL_NO_CONTEXT, config); 185 contextB = createContext(*display, contextA, config); [all...] |
/external/deqp/modules/glshared/ |
glsFboUtil.cpp | 303 namespace config { namespace in namespace:deqp::gls::FboUtil 517 } // namespace config 519 using namespace config;
|
/external/drm_hwcomposer/ |
hwcomposer.cpp | 164 ALOGE("Failed to set active config %d", ret); 727 int display, uint32_t config, 738 if (conn_mode.id() == config) { 798 ALOGE("Invalid config index %d passed in", index); 824 ALOGE("Failed to set active config %d", ret); 842 * TODO: This function sets the active config to the first one in the list. This 844 * some other, saner, method of choosing the config. 847 uint32_t config; local 849 int ret = hwc_get_display_configs(&hd->ctx->device, hd->display, &config, 856 ALOGE("Failed to set active config d=%d ret=%d", hd->display, ret) [all...] |
/external/icu/icu4c/source/common/ |
icuplug.cpp | 56 char config[UPLUG_NAME_MAX]; /**< configuration data */ member in struct:UPlugData 352 plug->config[0]=0; 361 static UPlugData *uplug_allocatePlug(UPlugEntrypoint *entrypoint, const char *config, void *lib, const char *symName, 368 if(config!=NULL) { 369 uprv_strncpy(plug->config, config, UPLUG_NAME_MAX); 371 plug->config[0] = 0; 505 return data->config; 529 static UPlugData* uplug_initPlugFromEntrypointAndLibrary(UPlugEntrypoint *entrypoint, const char *config, void *lib, const char *sym, 533 plug = uplug_allocatePlug(entrypoint, config, lib, sym, status) [all...] |
/external/libdrm/nouveau/ |
nouveau.h | 134 union nouveau_bo_config config; member in struct:nouveau_bo
|
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/ |
AndroidDaydream.java | 84 AndroidApplicationConfiguration config = new AndroidApplicationConfiguration(); local 85 initialize(listener, config); 92 * @param config the {@link AndroidApplicationConfiguration}, defining various settings of the application (use accelerometer, 94 public void initialize (ApplicationListener listener, AndroidApplicationConfiguration config) { 95 init(listener, config, false); 105 AndroidApplicationConfiguration config = new AndroidApplicationConfiguration(); local 106 return initializeForView(listener, config); 115 * @param config the {@link AndroidApplicationConfiguration}, defining various settings of the application (use accelerometer, 118 public View initializeForView (ApplicationListener listener, AndroidApplicationConfiguration config) { 119 init(listener, config, true) [all...] |
AndroidLiveWallpaperService.java | 130 AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
local 131 initialize(listener, config);
139 * @param config the {@link AndroidApplicationConfiguration}, defining various settings of the application (use accelerometer,
141 public void initialize (ApplicationListener listener, AndroidApplicationConfiguration config) {
144 app.initialize(listener, config);
146 if (config.getTouchEventsForLiveWallpaper && Integer.parseInt(android.os.Build.VERSION.SDK) >= 7)
|
/external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/ |
JglfwApplication.java | 71 JglfwApplicationConfiguration config = new JglfwApplicationConfiguration(); local 72 config.title = title; 73 config.width = width; 74 config.height = height; 75 return config; 78 public JglfwApplication (final ApplicationListener listener, final JglfwApplicationConfiguration config) { 80 if (config == null) throw new IllegalArgumentException("config cannot be null."); 87 initialize(config); 93 if (config.runOnEDT [all...] |
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/ |
LwjglApplication.java | 66 public LwjglApplication (ApplicationListener listener, LwjglApplicationConfiguration config) { 67 this(listener, config, new LwjglGraphics(config)); 74 public LwjglApplication (ApplicationListener listener, LwjglApplicationConfiguration config, Canvas canvas) { 75 this(listener, config, new LwjglGraphics(canvas, config)); 78 public LwjglApplication (ApplicationListener listener, LwjglApplicationConfiguration config, LwjglGraphics graphics) { 81 if (config.title == null) config.title = listener.getClass().getSimpleName(); 86 audio = new OpenALAudio(config.audioDeviceSimultaneousSources, config.audioDeviceBufferCount 110 LwjglApplicationConfiguration config = new LwjglApplicationConfiguration(); local [all...] |
/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/ |
Lwjgl3Application.java | 47 private final Lwjgl3ApplicationConfiguration config; field in class:Lwjgl3Application 74 public Lwjgl3Application(ApplicationListener listener, Lwjgl3ApplicationConfiguration config) { 76 this.config = Lwjgl3ApplicationConfiguration.copy(config); 77 if (this.config.title == null) this.config.title = listener.getClass().getSimpleName(); 79 if (!config.disableAudio) { 81 this.audio = Gdx.audio = new OpenALAudio(config.audioDeviceSimultaneousSources, 82 config.audioDeviceBufferCount, config.audioDeviceBufferSize) [all...] |
Lwjgl3Window.java | 40 private final Lwjgl3ApplicationConfiguration config; field in class:Lwjgl3Window 121 Lwjgl3ApplicationConfiguration config) { 124 this.windowListener = config.windowListener; 125 this.config = config; 263 return config;
|
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/ |
IOSApplication.java | 94 IOSApplicationConfiguration config; field in class:IOSApplication 111 public IOSApplication (ApplicationListener listener, IOSApplicationConfiguration config) { 113 this.config = config; 121 UIApplication.getSharedApplication().setIdleTimerDisabled(config.preventScreenDimming); 134 displayScaleFactor = config.displayScaleLargeScreenIfRetina * scale; 137 displayScaleFactor = config.displayScaleSmallScreenIfRetina * scale; 143 displayScaleFactor = config.displayScaleLargeScreenIfNonRetina; 146 displayScaleFactor = config.displayScaleSmallScreenIfNonRetina; 152 this.graphics = new IOSGraphics(scale, this, config, input, config.useGL30) [all...] |
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/ |
GwtGraphics.java | 65 GwtApplicationConfiguration config; field in class:GwtGraphics 67 public GwtGraphics (Panel root, GwtApplicationConfiguration config) { 72 canvas.setWidth(config.width); 73 canvas.setHeight(config.height); 74 this.config = config; 77 attributes.setAntialias(config.antialiasing); 78 attributes.setStencil(config.stencil); 79 attributes.setAlpha(config.alpha); 80 attributes.setPremultipliedAlpha(config.premultipliedAlpha) [all...] |
/external/libnfc-nxp/src/ |
phHciNfc_DevMgmt.c | 487 static uint8_t config = 0x10; local 548 config = 0x00; 550 NFC_ADDRESS_GPIO_PDIR , config ); 560 config = NXP_NFC_GPIO_MASK(NXP_DOWNLOAD_GPIO)| 0x03 ; 562 NFC_ADDRESS_GPIO_PEN , config ); 577 config = 0x00; 579 NFC_FELICA_RC_ADDR , config ); 602 config = (uint8_t) 605 NFC_ADDRESS_IFC_TO_TX_H , config ); 615 config = (uint8_t [all...] |
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_context.h | 70 } config; member in struct:nv30_context
|