Searched defs:this (Results 26 - 50 of 162) sorted by relevance

1234567

/external/qemu/distrib/sdl-1.2.15/src/audio/bsd/
H A DSDL_bsdaudio.c16 License along with this library; if not, write to the Free
107 SDL_AudioDevice *this; local
110 this = (SDL_AudioDevice*)SDL_malloc(sizeof(SDL_AudioDevice));
111 if(this) {
112 SDL_memset(this, 0, (sizeof *this));
113 this->hidden =
114 (struct SDL_PrivateAudioData*)SDL_malloc((sizeof *this->hidden));
116 if((this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/disk/
H A DSDL_diskaudio.c16 License along with this library; if not, write to the Free Software
80 SDL_AudioDevice *this; local
84 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
85 if ( this ) {
86 SDL_memset(this, 0, (sizeof *this));
87 this->hidden = (struct SDL_PrivateAudioData *)
88 SDL_malloc((sizeof *this->hidden));
90 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/dsp/
H A DSDL_dspaudio.c16 License along with this library; if not, write to the Free Software
91 SDL_AudioDevice *this; local
94 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
95 if ( this ) {
96 SDL_memset(this, 0, (sizeof *this));
97 this->hidden = (struct SDL_PrivateAudioData *)
98 SDL_malloc((sizeof *this->hidden));
100 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_dma8.c16 License along with this library; if not, write to the Free
129 SDL_AudioDevice *this; local
132 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
133 if ( this ) {
134 SDL_memset(this, 0, (sizeof *this));
135 this->hidden = (struct SDL_PrivateAudioData *)
136 SDL_malloc((sizeof *this->hidden));
138 if ( (this == NULL) || (this
325 SDL_AudioDevice *this = SDL_MintAudio_device; local
[all...]
H A DSDL_mintaudio_stfa.c16 License along with this library; if not, write to the Free
128 SDL_AudioDevice *this; local
131 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
132 if ( this ) {
133 SDL_memset(this, 0, (sizeof *this));
134 this->hidden = (struct SDL_PrivateAudioData *)
135 SDL_malloc((sizeof *this->hidden));
137 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/nds/
H A DSDL_ndsaudio.c16 License along with this library; if not, write to the Free Software
218 SDL_AudioDevice *this; local
221 this = (SDL_AudioDevice *)malloc(sizeof(SDL_AudioDevice));
222 if ( this ) {
223 SDL_memset(this, 0, (sizeof *this));
224 this->hidden = (struct SDL_PrivateAudioData *)
225 SDL_malloc((sizeof *this->hidden));
227 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_gamma.c16 License along with this library; if not, write to the Free Software
97 SDL_VideoDevice *this = current_video; local
111 succeeded = video->SetGamma(this, red, green, blue);
117 so this function isn't officially supported.
123 SDL_VideoDevice *this = current_video; local
139 succeeded = video->GetGamma(this, red, green, blue);
148 SDL_VideoDevice *this = current_video; local
189 succeeded = video->SetGammaRamp(this, video->gamma);
199 SDL_VideoDevice *this = current_video; local
210 video->GetGammaRamp(this, vide
[all...]
H A DSDL_yuv.c16 License along with this library; if not, write to the Free Software
36 SDL_VideoDevice *this = current_video; local
57 overlay = video->CreateYUVOverlay(this, w, h, format, display);
61 overlay = SDL_CreateYUV_SW(this, w, h, format, display);
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbriva.c16 License along with this library; if not, write to the Free Software
83 if ( dst == this->screen ) {
90 FB_dst_to_xy(this, dst, &dstX, &dstY);
105 if ( dst == this->screen ) {
114 SDL_VideoDevice *this = current_video; local
129 if ( dst == this->screen ) {
136 FB_dst_to_xy(this, src, &srcX, &srcY);
137 FB_dst_to_xy(this, dst, &dstX, &dstY);
153 if ( dst == this->screen ) {
168 if ( ! this
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dinffast.c38 inflate execution time is spent in this routine.
90 code this; /* retrieved table entry */ local
127 this = lcode[hold & lmask];
129 op = (unsigned)(this.bits);
132 op = (unsigned)(this.op);
134 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
136 "inflate: literal 0x%02x\n", this.val));
137 PUP(out) = (unsigned char)(this.val);
140 len = (unsigned)(this
[all...]
H A Dinftrees.c16 include such an acknowledgment, I would appreciate that you keep this
53 code this; /* table entry for duplication */ local
89 lens[] are in the range 0..MAXBITS. The caller must assure this.
91 symbol does not occur in this code.
118 this.op = (unsigned char)64; /* invalid code marker */
119 this.bits = (unsigned char)1;
120 this.val = (unsigned short)0;
121 *(*table)++ = this; /* make a table to force an error */
122 *(*table)++ = this;
150 Create and fill in decoding tables. In this loo
[all...]
/external/svox/pico/lib/
H A Dpicokpdf.c5 * you may not use this file except in compliance with the License.
92 static pico_status_t kpdfDURInitialize(register picoknow_KnowledgeBase this, argument
97 if (NULL == this || NULL == this->subObj) {
101 pdfdur = (picokpdf_pdfdur_t *)this->subObj;
105 pdfdur->numframes = ((picoos_uint16)(this->base[pos+1])) << 8 |
106 this->base[pos];
108 pdfdur->vecsize = this->base[pos++];
109 pdfdur->sampperframe = this->base[pos++];
110 pdfdur->phonquantlen = this
144 kpdfMULInitialize(register picoknow_KnowledgeBase this, picoos_Common common) argument
249 kpdfPHSInitialize(register picoknow_KnowledgeBase this, picoos_Common common) argument
273 kpdfMULSubObjDeallocate(register picoknow_KnowledgeBase this, picoos_MemoryManager mm) argument
288 kpdfDURSubObjDeallocate(register picoknow_KnowledgeBase this, picoos_MemoryManager mm) argument
296 kpdfPHSSubObjDeallocate(register picoknow_KnowledgeBase this, picoos_MemoryManager mm) argument
308 picokpdf_specializePdfKnowledgeBase(picoknow_KnowledgeBase this, picoos_Common common, const picokpdf_kpdftype_t kpdftype) argument
363 picokpdf_getPdfDUR(picoknow_KnowledgeBase this) argument
367 picokpdf_getPdfMUL(picoknow_KnowledgeBase this) argument
371 picokpdf_getPdfPHS(picoknow_KnowledgeBase this) argument
[all...]
/external/zlib/src/contrib/infback9/
H A Dinftree9.c16 include such an acknowledgment, I would appreciate that you keep this
53 code this; /* table entry for duplication */ local
91 lens[] are in the range 0..MAXBITS. The caller must assure this.
93 symbol does not occur in this code.
144 Create and fill in decoding tables. In this loop, the table being
159 counts are used for this, and so count[] is decremented as codes are
170 routine permits incomplete codes, so another loop after this one fills
212 this.bits = (unsigned char)(len - drop);
214 this.op = (unsigned char)0;
215 this
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/js/media/
H A Dmedia_util.js2 // Use of this source code is governed by a BSD-style license that can be
26 this.mediaType_ = opt_mediaType || FileType.getMediaType(url);
27 this.loaderType_ = opt_loaderType || ThumbnailLoader.LoaderType.IMAGE;
28 this.metadata_ = opt_metadata;
29 this.priority_ = (opt_priority !== undefined) ? opt_priority : 2;
32 this.thumbnailUrl_ = url; // Use the URL directly.
36 this.fallbackUrl_ = null;
37 this.thumbnailUrl_ = null;
42 this.fallbackUrl_ = apps[i].docIcon;
50 this
[all...]
/external/chromium_org/remoting/webapp/
H A Dsession_connector.js2 // Use of this source code is governed by a BSD-style license that can be
26 this.pluginParent_ = pluginParent;
32 this.onOk_ = onOk;
38 this.onError_ = onError;
44 this.clientJid_ = '';
50 this.connectionMode_ = remoting.ClientSession.Mode.ME2ME;
58 this.wcsAccessTokenRefreshTimer_ = 0;
61 this.reset();
64 remoting.identity.callWithToken(this.loadWcs_.bind(this), thi
[all...]
/external/chromium_org/v8/test/mjsunit/tools/
H A Dprofile.js7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
61 this.profile = new Profile();
62 this.stack_ = [];
63 this.addFunctions_();
75 this.profile.addLibrary('lib1', 0x11000, 0x12000);
76 this.profile.addStaticCode('lib1-f1', 0x11100, 0x11900);
77 this.profile.addStaticCode('lib1-f2', 0x11200, 0x11500);
78 this
[all...]
/external/v8/test/mjsunit/tools/
H A Dprofile.js7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
61 this.profile = new Profile();
62 this.stack_ = [];
63 this.addFunctions_();
75 this.profile.addLibrary('lib1', 0x11000, 0x12000);
76 this.profile.addStaticCode('lib1-f1', 0x11100, 0x11900);
77 this.profile.addStaticCode('lib1-f2', 0x11200, 0x11500);
78 this
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
H A Dcommands.js2 // Use of this source code is governed by a BSD-style license that can be
18 this.document_ = document;
19 this.undo_ = [];
20 this.redo_ = [];
21 this.subscribers_ = [];
22 this.currentImage_ = canvas;
26 if (this.currentImage_) {
27 this.baselineImage_ = document.createElement('canvas');
28 this.baselineImage_.width = this
[all...]
/external/bison/src/
H A DLR0.c19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
310 state_list *this = first_state;
316 state *s = this->state;
324 first_state = this->next;
325 free (this);
346 item of this initial rule. */
357 /* Set up itemset for the transitions out of this state. itemset gets a
360 /* Record the reductions allowed out of this state. */
308 state_list *this = first_state; local
/external/blktrace/btt/
H A Dproc.c17 * along with this program; if not, write to the Free Software
67 struct pn_info *this; local
71 this = rb_entry(n, struct pn_info, rb_node);
72 if (pid < this->u.pid)
74 else if (pid > this->u.pid)
77 return this->pip;
86 struct pn_info *this; local
90 this = rb_entry(n, struct pn_info, rb_node);
91 cmp = strcmp(name, this->u.name);
97 return this
105 struct pn_info *this; local
132 struct pn_info *this; local
[all...]
/external/chromium_org/v8/src/
H A Dliveedit-debugger.js7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
40 // create a new instance of this function goes away. An old version of script
41 // is created to back up this obsolete function.
71 // Find all SharedFunctionInfo's that were compiled from this script.
165 // We haven't changed anything before this line yet.
243 this.ApplyPatchMultiChunk = ApplyPatchMultiChunk;
268 // For some functions we will restore this link later.
330 // The function got a new code. However, this ne
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/arts/
H A DSDL_artsaudio.c16 License along with this library; if not, write to the Free Software
177 SDL_AudioDevice *this; local
181 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
182 if ( this ) {
183 SDL_memset(this, 0, (sizeof *this));
184 this->hidden = (struct SDL_PrivateAudioData *)
185 SDL_malloc((sizeof *this->hidden));
187 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/dc/
H A DSDL_dcaudio.c16 License along with this library; if not, write to the Free Software
58 SDL_AudioDevice *this; local
61 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
62 if ( this ) {
63 SDL_memset(this, 0, (sizeof *this));
64 this->hidden = (struct SDL_PrivateAudioData *)
65 SDL_malloc((sizeof *this->hidden));
67 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/dma/
H A DSDL_dmaaudio.c16 License along with this library; if not, write to the Free Software
101 SDL_AudioDevice *this; local
104 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
105 if ( this ) {
106 SDL_memset(this, 0, (sizeof *this));
107 this->hidden = (struct SDL_PrivateAudioData *)
108 SDL_malloc((sizeof *this->hidden));
110 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/dmedia/
H A DSDL_irixaudio.c16 License along with this library; if not, write to the Free Software
69 SDL_AudioDevice *this; local
72 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
73 if ( this ) {
74 SDL_memset(this, 0, (sizeof *this));
75 this->hidden = (struct SDL_PrivateAudioData *)
76 SDL_malloc((sizeof *this->hidden));
78 if ( (this == NULL) || (this
[all...]

Completed in 1934 milliseconds

1234567