/external/openssl/crypto/asn1/ |
asn1_locl.h | 81 char *info; member in struct:evp_pkey_asn1_method_st
|
/external/openssl/crypto/srp/ |
srp.h | 91 char *info; member in struct:SRP_user_pwd_st
|
/external/openssl/include/openssl/ |
srp.h | 91 char *info; member in struct:SRP_user_pwd_st
|
/external/pdfium/core/src/fxge/win32/ |
fx_win32_dib.cpp | 109 CFX_ByteString info = GetBitmapInfo(pBitmap);
local 111 hBitmap = CreateDIBitmap(hDC, (BITMAPINFOHEADER*)(FX_LPCSTR)info, CBM_INIT,
112 pBitmap->GetBuffer(), (BITMAPINFO*)(FX_LPCSTR)info, DIB_RGB_COLORS);
148 CFX_ByteString info = GetBitmapInfo(pDIBitmap);
local 149 int ret = GetDIBits(hDC, hBitmap, 0, height, pDIBitmap->GetBuffer(), (BITMAPINFO*)(FX_LPCSTR)info, DIB_RGB_COLORS);
184 CFX_ByteString info = GetBitmapInfo(pDIBitmap);
local 185 int ret = GetDIBits(hDC, hBitmap, 0, height, pDIBitmap->GetBuffer(), (BITMAPINFO*)(FX_LPCSTR)info, DIB_RGB_COLORS);
|
/external/proguard/src/proguard/optimize/info/ |
FieldOptimizationInfo.java | 21 package proguard.optimize.info;
|
SideEffectInstructionChecker.java | 21 package proguard.optimize.info;
|
/external/qemu/audio/ |
audio.h | 67 void (*info) (void *opaque); member in struct:capture_ops
|
/external/qemu/ |
disas.c | 11 struct disassemble_info info; member in struct:CPUDebug 18 /* Get LENGTH bytes from info's buffer, at target address memaddr. 22 struct disassemble_info *info) 24 if (memaddr < info->buffer_vma 25 || memaddr + length > info->buffer_vma + info->buffer_length) 28 memcpy (myaddr, info->buffer + (memaddr - info->buffer_vma), length); 32 /* Get LENGTH bytes from info's buffer, at target address memaddr. 38 struct disassemble_info *info) [all...] |
/external/qemu/distrib/sdl-1.2.15/include/ |
SDL_syswm.h | 113 } info; member in struct:SDL_SysWMinfo 217 * It fills the structure pointed to by 'info' with custom information and 220 * the 'info' structure is not filled in or not supported. 224 * SDL_SysWMinfo info; 225 * SDL_VERSION(&info.version); 226 * if ( SDL_GetWMInfo(&info) ) { ... } 229 extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info);
|
/external/qemu/distrib/sdl-1.2.15/src/audio/dma/ |
SDL_dmaaudio.c | 81 struct audio_buf_info info; local 85 (ioctl(fd, SNDCTL_DSP_GETOSPACE, &info) == 0) ) { 216 count_info info; local 222 if ( ioctl(audio_fd, SNDCTL_DSP_GETOPTR, &info) < 0 ) { 227 } while ( frame_ticks && (info.blocks < 1) ); 229 if ( info.blocks > 1 ) { 230 printf("Warning: audio underflow (%d frags)\n", info.blocks-1); 233 playing = info.ptr / this->spec.size; 315 struct audio_buf_info info; local 414 if ( ioctl(audio_fd, SNDCTL_DSP_GETOSPACE, &info) < 0 ) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/freebsd/ |
SDL_syscdrom.c | 66 struct ioc_read_subchannel info; local 78 info.address_format = CD_MSF_FORMAT; 79 info.data_format = CD_CURRENT_POSITION; 80 info.data_len = 0; 81 info.data = NULL; 86 if ( (ioctl(cdfd, CDIOCREADSUBCHANNEL, &info) == 0) || 295 struct ioc_read_subchannel info; local 298 info.address_format = CD_MSF_FORMAT; 299 info.data_format = CD_CURRENT_POSITION; 300 info.track = 0 [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/mint/ |
SDL_syscdrom.c | 76 struct cdrom_subchnl info; local 104 info.cdsc_format = CDROM_MSF; 105 if ( (Metaioctl(i, METADOS_IOCTL_MAGIC, CDROMSUBCHNL, &info) == 0) || ERRNO_TRAYEMPTY(errno) ) { 223 struct cdrom_subchnl info; local 225 info.cdsc_format = CDROM_MSF; 226 if ( SDL_SYS_CDioctl(cdrom->id, CDROMSUBCHNL, &info) < 0 ) { 233 switch (info.cdsc_audiostatus) { 251 if ( info.cdsc_trk == CDROM_LEADOUT ) { 265 info.cdsc_absaddr.msf.minute, 266 info.cdsc_absaddr.msf.second [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/openbsd/ |
SDL_syscdrom.c | 69 struct ioc_read_subchannel info; local 81 info.address_format = CD_MSF_FORMAT; 82 info.data_format = CD_CURRENT_POSITION; 83 info.data_len = 0; 84 info.data = NULL; 89 if ( (ioctl(cdfd, CDIOCREADSUBCHANNEL, &info) == 0) || 304 struct ioc_read_subchannel info; local 307 info.address_format = CD_MSF_FORMAT; 308 info.data_format = CD_CURRENT_POSITION; 309 info.track = 0 [all...] |
/external/qemu/distrib/sdl-1.2.15/src/thread/ |
SDL_thread.c | 175 SDL_Thread *info; member in struct:__anon33146 193 args->info->threadid = SDL_ThreadID(); 198 statusloc = &args->info->status; 218 /* Allocate memory for the thread info structure */ 236 args->info = thread;
|
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/ |
SDL_nxvideo.c | 213 this->info.current_w = si.cols ; 214 this->info.current_h = si.rows ; 461 GR_WINDOW_INFO info ; local 471 GrGetWindowInfo (SDL_Window, & info) ; 472 x = si.xpos - info.x ; 473 y = si.ypos - info.y ; 474 if (x >= 0 && x <= info.width && y >= 0 && y <= info.height) {
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testsprite.c | 122 const SDL_VideoInfo *info; local 128 info = SDL_GetVideoInfo(); 129 if ( info->blit_hw_CC && info->blit_fill ) { 140 if ( info->video_mem*1024 > (height*width*bpp/8) ) { 228 /* Allocate memory for the sprite info */
|
testvidinfo.c | 388 const SDL_VideoInfo *info; local 401 info = SDL_GetVideoInfo(); 404 info->current_w, info->current_h, info->vfmt->BitsPerPixel); 405 if ( info->vfmt->palette == NULL ) { 406 printf(" Red Mask = 0x%.8x\n", info->vfmt->Rmask); 407 printf(" Green Mask = 0x%.8x\n", info->vfmt->Gmask); 408 printf(" Blue Mask = 0x%.8x\n", info->vfmt->Bmask); 420 printf("\t%dx%dx%d\n", modes[i]->w, modes[i]->h, info->vfmt->BitsPerPixel) [all...] |
/external/qemu/hw/android/ |
android_mips.c | 212 DriveInfo* info = drive_get( IF_IDE, 0, 0 ); local 213 if (info != NULL) { 214 goldfish_mmc_init(GOLDFISH_MMC, 0, info->bdrv);
|
/external/qemu/target-i386/ |
hax-windows.c | 67 struct hax_alloc_ram_info info; local 77 info.size = size; 78 info.va = va; 84 &info, sizeof(info), 101 struct hax_set_ram_info info, *pinfo = &info; local 119 info.pa_start = start_addr; 120 info.size = size; 121 info.va = (uint64_t)(uintptr_t)qemu_get_ram_ptr(phys_offset) 358 struct hax_tunnel_info info; local [all...] |
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
ebdt_table.cc | 148 BitmapGlyphInfoPtr info = new BitmapGlyphInfo(glyph_entry->first, local 150 new_loca_map[glyph_entry->first] = info; 222 BitmapGlyphInfoPtr info = entry->second; local 225 info->offset(), info->length()))); 228 slice, info->format()));
|
/external/skia/gm/ |
gammatext.cpp | 41 static CGContextRef makeCG(const SkImageInfo& info, const void* addr, 43 if (kN32_SkColorType != info.colorType() || NULL == addr) { 47 CGContextRef cg = CGBitmapContextCreate((void*)addr, info.width(), info.height(), 148 SkImageInfo info; local 150 const void* addr = canvas->peekPixels(&info, &rowBytes); 152 cg = makeCG(info, addr, rowBytes);
|
megalooper.cpp | 166 SkLayerDrawLooper::LayerInfo info; local 168 info.fPaintBits = SkLayerDrawLooper::kColorFilter_Bit | 170 info.fColorMode = SkXfermode::kSrc_Mode; 171 info.fOffset.set(xOff, yOff); 172 info.fPostTranslate = false; 174 SkPaint* paint = looperBuilder.addLayer(info); 210 SkLayerDrawLooper::LayerInfo info; local 212 info.fPaintBits = SkLayerDrawLooper::kColorFilter_Bit | 214 info.fColorMode = SkXfermode::kSrc_Mode; 215 info.fPostTranslate = false [all...] |
srcmode.cpp | 120 SkImageInfo info = SkImageInfo::MakeN32Premul(size); local 126 return SkSurface::NewRenderTarget(ctx, info, 0); 129 return SkSurface::NewRaster(info);
|
/external/skia/include/core/ |
SkPixelRef.h | 57 const SkImageInfo& info() const { function in class:SkPixelRef 137 * Change the info's AlphaType. Note that this does not automatically
|
/external/skia/platform_tools/nacl/src/ |
nacl_debugger.cpp | 170 const SkImageInfo info = SkImageInfo::MakeN32Premul(fWidth, fHeight); local 171 fBitmap.installPixels(info, fImage.data(), info.minRowBytes());
|