HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 351 - 375 of 690) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.12/src/audio/paudio/
SDL_paudio.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
88 SDL_AudioDevice *this; local
91 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
92 if ( this ) {
93 SDL_memset(this, 0, (sizeof *this));
94 this->hidden = (struct SDL_PrivateAudioData *)
95 SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/windib/
SDL_dibaudio.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
67 SDL_AudioDevice *this; local
70 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
71 if ( this ) {
72 SDL_memset(this, 0, (sizeof *this));
73 this->hidden = (struct SDL_PrivateAudioData *)
74 SDL_malloc((sizeof *this->hidden))
109 SDL_AudioDevice *this = (SDL_AudioDevice *)dwInstance; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/events/
SDL_keyboard.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
55 SDL_VideoDevice *this = current_video; local
64 video->InitOSKeymap(this);
368 /* FIXME: make this function const in 1.3 */
479 /* Figure out what type of event this is */
  /external/qemu/distrib/zlib-1.2.3/
infback.c 7 This code is largely copied from inflate.c. Normally either infback.o or
65 fixed code decoding. Normally this returns fixed tables from inffixed.h.
66 If BUILDFIXED is defined, then instead this routine builds the tables the
68 thereafter. This reduces the size of the code by about 2K bytes, in
104 /* do this just once */
228 inflateBack() call. This parameter can be a structure that provides the
256 code this; /* current decoding table entry */ local
392 this = state->lencode[BITS(state->lenbits)];
393 if ((unsigned)(this.bits) <= bits) break;
396 if (this.val < 16)
    [all...]