HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 876 - 900 of 2856) sorted by null

<<31323334353637383940>>

  /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/proguard/src/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/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:__anon25011
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/elff/
elf_file.cc 28 /* Tags to parse when collecting info about routines. */
195 Dwarf_AddressInfo info; local
196 info.die_obj = cu->get_leaf_die_for_address(address);
197 if (info.die_obj != NULL) {
199 if (cu->get_pc_address_file_info(address, &info)) {
201 address_info->file_name = info.file_name;
202 address_info->dir_name = info.dir_name;
203 address_info->line_number = info.line_number;
212 Dwarf_Tag tag = info.die_obj->get_tag();
216 info.die_obj = info.die_obj->parent_die();
    [all...]
  /external/qemu/hw/
android_mips.c 217 DriveInfo* info = drive_get( IF_IDE, 0, 0 ); local
218 if (info != NULL) {
219 goldfish_mmc_init(GOLDFISH_MMC, 0, info->bdrv);
  /external/qemu/target-i386/
hax-windows.c 65 struct hax_alloc_ram_info info; local
75 info.size = size;
76 info.va = va;
82 &info, sizeof(info),
98 struct hax_set_ram_info info, *pinfo = &info; local
116 info.pa_start = start_addr;
117 info.size = size;
118 info.va = (uint64_t)qemu_get_ram_ptr(phys_offset)
355 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/
megalooper.cpp 167 SkLayerDrawLooper::LayerInfo info; local
169 info.fFlagsMask = 0;
170 info.fPaintBits = SkLayerDrawLooper::kColorFilter_Bit |
172 info.fColorMode = SkXfermode::kSrc_Mode;
173 info.fOffset.set(xOff, yOff);
174 info.fPostTranslate = false;
176 SkPaint* paint = looper->addLayer(info);
212 SkLayerDrawLooper::LayerInfo info; local
214 info.fFlagsMask = 0;
215 info.fPaintBits = SkLayerDrawLooper::kColorFilter_Bit
    [all...]
srcmode.cpp 120 SkImageInfo info = { local
131 return SkSurface::NewRenderTarget(ctx, info, 0);
134 return SkSurface::NewRaster(info);
  /external/skia/include/core/
SkPixelRef.h 63 const SkImageInfo& info() const { function in class:SkPixelRef
  /external/skia/src/animator/
SkDisplayType.cpp 220 info = Sk##_class::fInfo; infoCount = Sk##_class::fInfoCount; break
222 info = SkDraw##_class::fInfo; infoCount = SkDraw##_class::fInfoCount; break
224 info = SkDisplay##_class::fInfo; infoCount = SkDisplay##_class::fInfoCount; \
229 const SkMemberInfo* info = NULL; local
314 case SkType_Point: info = Sk_Point::fInfo; infoCount = Sk_Point::fInfoCount; break; // no virtual flavor
362 if ((info = (*extraPtr)->getMembers(type, infoCountPtr)) != NULL)
363 return info;
370 return info;
376 const SkMemberInfo* info = GetMembers(maker, type, &infoCount); local
377 info = SkMemberInfo::Find(info, infoCount, matchPtr)
532 const SkMemberInfo* info = SkDisplayType::GetMembers(maker, type, NULL); local
545 const SkMemberInfo* info = GetMembers(maker, base, NULL); \/\/ get info for this type local
751 const SkMemberInfo* info = GetMembers(maker, gTypeNames[index].fType, &infoCount); local
    [all...]
SkDisplayXMLParser.cpp 124 const SkMemberInfo* info = SkDisplayType::GetMember(&fMaker, type, &name); local
125 if (info == NULL) {
130 if (info->setValue(fMaker, NULL, 0, info->getCount(), displayable, info->getType(), attrValue,
147 if (info->fType != SkType_MemberProperty) {
155 displayable->setProperty(info->propertyIndex(), scriptValue);
184 const SkMemberInfo* info = local
187 if ((foundInfo = searchContainer(info, infoCount)) != NULL) {
274 const SkMemberInfo* info = &infoBase[index] local
    [all...]
  /external/skia/src/core/
SkPicture.cpp 281 SkPictInfo info; local
282 if (!stream->read(&info, sizeof(SkPictInfo))) {
286 if (PICTURE_VERSION != info.fVersion
289 && PRIOR_PICTURE_VERSION != info.fVersion // TODO: remove when .skps regenerated
296 *pInfo = info;
308 SkPictInfo info; local
310 if (!StreamIsSKP(stream, &info)) {
317 playback = SkPicturePlayback::CreateFromStream(stream, info, proc);
325 return SkNEW_ARGS(SkPicture, (playback, info.fWidth, info.fHeight))
335 SkPictInfo info; local
    [all...]
  /external/skia/src/gpu/gl/
GrGLContext.h 126 const GrGLContextInfo& info() const { return fInfo; } function in class:GrGLContext
127 GrGLContextInfo& info() { return fInfo; } function in class:GrGLContext

Completed in 605 milliseconds

<<31323334353637383940>>