Home
last modified time | relevance | path

Searched refs:maxframes (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/dports/math/vtk8/VTK-8.2.0/Rendering/OptiX/Testing/Cxx/
H A DvtkOptiXTestInteractor.cxx147 int maxframes = vtkOptiXRendererNode::GetMaxFrames(this->GLRenderer) + 4; in OnKeyPress() local
148 if (maxframes>64) in OnKeyPress()
150 maxframes=64; in OnKeyPress()
152 vtkOptiXRendererNode::SetMaxFrames(maxframes, this->GLRenderer); in OnKeyPress()
153 cerr << "frames " << maxframes << endl; in OnKeyPress()
159 int maxframes = vtkOptiXRendererNode::GetMaxFrames(this->GLRenderer); in OnKeyPress() local
160 if (maxframes>1) in OnKeyPress()
162 maxframes=maxframes/2; in OnKeyPress()
164 vtkOptiXRendererNode::SetMaxFrames(maxframes, this->GLRenderer); in OnKeyPress()
165 cerr << "frames " << maxframes << endl; in OnKeyPress()
/dports/math/vtk9/VTK-9.1.0/Rendering/RayTracing/Testing/Cxx/
H A DvtkOSPRayTestInteractor.cxx60 int maxframes = vtkOSPRayRendererNode::GetMaxFrames(renderer); in Execute() local
61 if (this->ProgressiveCount < maxframes) in Execute()
190 if (maxframes > 256) in OnKeyPress()
192 maxframes = 256; in OnKeyPress()
194 vtkOSPRayRendererNode::SetMaxFrames(maxframes, this->GLRenderer); in OnKeyPress()
195 cerr << "frames " << maxframes << endl; in OnKeyPress()
201 int maxframes = vtkOSPRayRendererNode::GetMaxFrames(this->GLRenderer); in OnKeyPress() local
202 if (maxframes > 1) in OnKeyPress()
204 maxframes = maxframes / 2; in OnKeyPress()
206 vtkOSPRayRendererNode::SetMaxFrames(maxframes, this->GLRenderer); in OnKeyPress()
[all …]
/dports/math/vtk8/VTK-8.2.0/Rendering/OSPRay/Testing/Cxx/
H A DvtkOSPRayTestInteractor.cxx60 int maxframes = vtkOSPRayRendererNode::GetMaxFrames(renderer); in Execute() local
61 if (this->ProgressiveCount < maxframes) in Execute()
194 if (maxframes>256) in OnKeyPress()
196 maxframes=256; in OnKeyPress()
198 vtkOSPRayRendererNode::SetMaxFrames(maxframes, this->GLRenderer); in OnKeyPress()
199 cerr << "frames " << maxframes << endl; in OnKeyPress()
205 int maxframes = vtkOSPRayRendererNode::GetMaxFrames(this->GLRenderer); in OnKeyPress() local
206 if (maxframes>1) in OnKeyPress()
208 maxframes=maxframes/2; in OnKeyPress()
210 vtkOSPRayRendererNode::SetMaxFrames(maxframes, this->GLRenderer); in OnKeyPress()
[all …]
/dports/games/xonotic/Xonotic/source/darkplaces/
H A Dsnd_mem.c52 unsigned int maxframes; in Snd_CreateRingBuffer() local
56maxframes = (format->speed + 1) / 2; // Make the sound buffer large enough for containing 0.5 sec… in Snd_CreateRingBuffer()
58 maxframes = sampleframes; in Snd_CreateRingBuffer()
60 memsize = maxframes * format->width * format->channels; in Snd_CreateRingBuffer()
62 ringbuffer->maxframes = maxframes; in Snd_CreateRingBuffer()
67 ringbuffer->maxframes = sampleframes; in Snd_CreateRingBuffer()
93 sb->maxframes = (unsigned int)newsampleframes; in Snd_CreateSndBuffer()
129 if (outcount > sb->maxframes - sb->nbframes) in Snd_AppendToSndBuffer()
H A Dsnd_sdl.c59 StartOffset = snd_renderbuffer->startframe % snd_renderbuffer->maxframes; in Buffer_Callback()
60 EndOffset = (snd_renderbuffer->startframe + FrameCount) % snd_renderbuffer->maxframes; in Buffer_Callback()
65 PartialLength1 = (snd_renderbuffer->maxframes - StartOffset) * factor; in Buffer_Callback()
/dports/games/nexuiz/Nexuiz/sources/darkplaces/
H A Dsnd_mem.c53 unsigned int maxframes; in Snd_CreateRingBuffer() local
57maxframes = (format->speed + 1) / 2; // Make the sound buffer large enough for containing 0.5 sec… in Snd_CreateRingBuffer()
59 maxframes = sampleframes; in Snd_CreateRingBuffer()
61 memsize = maxframes * format->width * format->channels; in Snd_CreateRingBuffer()
63 ringbuffer->maxframes = maxframes; in Snd_CreateRingBuffer()
68 ringbuffer->maxframes = sampleframes; in Snd_CreateRingBuffer()
94 sb->maxframes = newsampleframes; in Snd_CreateSndBuffer()
130 if (outcount > sb->maxframes - sb->nbframes) in Snd_AppendToSndBuffer()
H A Dsnd_modplug.c270 per_ch->sb.maxframes = buff_len / (per_ch->sb.format.channels * per_ch->sb.format.width); in ModPlug_FetchSound()
281 if (nbsampleframes > sb->maxframes) in ModPlug_FetchSound()
322 if (*start - real_start + nbsampleframes > sb->maxframes) in ModPlug_FetchSound()
342 if (sb->format.speed + sb->nbframes > sb->maxframes) in ModPlug_FetchSound()
345 sb->format.speed + sb->nbframes, sb->maxframes); in ModPlug_FetchSound()
H A Dsnd_sdl.c59 StartOffset = snd_renderbuffer->startframe % snd_renderbuffer->maxframes; in Buffer_Callback()
60 EndOffset = (snd_renderbuffer->startframe + FrameCount) % snd_renderbuffer->maxframes; in Buffer_Callback()
65 PartialLength1 = (snd_renderbuffer->maxframes - StartOffset) * factor; in Buffer_Callback()
/dports/games/darkplaces/darkplaces/
H A Dsnd_mem.c52 unsigned int maxframes; in Snd_CreateRingBuffer() local
56maxframes = (format->speed + 1) / 2; // Make the sound buffer large enough for containing 0.5 sec… in Snd_CreateRingBuffer()
58 maxframes = sampleframes; in Snd_CreateRingBuffer()
60 memsize = maxframes * format->width * format->channels; in Snd_CreateRingBuffer()
62 ringbuffer->maxframes = maxframes; in Snd_CreateRingBuffer()
67 ringbuffer->maxframes = sampleframes; in Snd_CreateRingBuffer()
93 sb->maxframes = (unsigned int)newsampleframes; in Snd_CreateSndBuffer()
129 if (outcount > sb->maxframes - sb->nbframes) in Snd_AppendToSndBuffer()
H A Dsnd_sdl.c59 StartOffset = snd_renderbuffer->startframe % snd_renderbuffer->maxframes; in Buffer_Callback()
60 EndOffset = (snd_renderbuffer->startframe + FrameCount) % snd_renderbuffer->maxframes; in Buffer_Callback()
65 PartialLength1 = (snd_renderbuffer->maxframes - StartOffset) * factor; in Buffer_Callback()
/dports/misc/py-powerline-status/powerline-2.8.2/powerline/listers/
H A Dpdb.py8 def frame_lister(pl, segment_info, full_stack=False, maxframes=3): argument
25 if len(frames) > maxframes:
26 frames = frames[-maxframes:]
/dports/devel/elfutils/elfutils-0.179/src/
H A Dstack.c55 static int maxframes = 256; variable
182 if (frames->frames == maxframes) in frame_callback()
335 for (int i = 1; i < nscopes && (maxframes == 0 || *nr < maxframes); i++) in print_inline_frames()
366 for (int nr = 0; nr < frames->frames && (maxframes == 0 in print_frames()
367 || frame_nr < maxframes); nr++) in print_frames()
420 if (frames->frames > 0 && frame_nr == maxframes) in print_frames()
422 "(%d, use -n 0 for unlimited)", (long long) tid, maxframes); in print_frames()
545 maxframes = atoi (arg); in parse_opt()
546 if (maxframes < 0) in parse_opt()
703 frames.allocated = maxframes == 0 ? 2048 : maxframes; in main()
/dports/audio/zmusic/ZMusic-1.1.8/thirdparty/adlmidi/chips/
H A Djava_opl3.cpp85 enum { maxframes = 256 }; in nativeGenerateN() enumerator
87 float buf[2 * maxframes]; in nativeGenerateN()
92 size_t curframes = (frames < (size_t)maxframes) ? frames : (size_t)maxframes; in nativeGenerateN()
/dports/multimedia/ogmtools/ogmtools-1.5/
H A Dr_avi.cpp119 maxframes = AVI_video_frames(avi); in avi_reader_c()
120 for (i = 0; i < maxframes; i++) in avi_reader_c()
362 frames = maxframes + 1; in read()
377 while (!done && (frames <= (maxframes - 1))) { in read()
386 frames = maxframes + 1; in read()
390 if (frames == (maxframes - 1)) { in read()
419 frames = maxframes + 1; in read()
421 } else if (frames != (maxframes + 1)) in read()
575 if (frames == (maxframes + 1)) in display_progress()
/dports/science/py-obspy/obspy-1.2.2/obspy/io/mseed/src/libmseed/
H A Dunpackdata.c188 int maxframes = inputlength / 64; in msr_decode_steim1() local
205 if (!input || !output || outputlength <= 0 || maxframes <= 0) in msr_decode_steim1()
210 maxframes, swapflag, (srcname) ? srcname : ""); in msr_decode_steim1()
212 for (frameidx = 0; frameidx < maxframes && samplecount > 0; frameidx++) in msr_decode_steim1()
343 int maxframes = inputlength / 64; in msr_decode_steim2() local
360 if (!input || !output || outputlength <= 0 || maxframes <= 0) in msr_decode_steim2()
365 maxframes, swapflag, (srcname) ? srcname : ""); in msr_decode_steim2()
367 for (frameidx = 0; frameidx < maxframes && samplecount > 0; frameidx++) in msr_decode_steim2()
H A Dpackdata.c245 int maxframes = outputlength / 64; in msr_encode_steim1() local
266 samplecount, maxframes, swapflag); in msr_encode_steim1()
273 for (frameidx = 0; frameidx < maxframes && outputsamples < samplecount; frameidx++) in msr_encode_steim1()
436 int maxframes = outputlength / 64; in msr_encode_steim2() local
457 samplecount, maxframes, swapflag); in msr_encode_steim2()
464 for (frameidx = 0; frameidx < maxframes && outputsamples < samplecount; frameidx++) in msr_encode_steim2()
/dports/net/mpich2/mpich2-1.5/src/mpe2/src/callstack/src/
H A Dfancyprint.c35 int maxframes ) in MPE_CallStack_fancyprint() argument
51 while ( MPE_CallStack_iteratorHasMore( cstk ) && idx < maxframes ) { in MPE_CallStack_fancyprint()
/dports/chinese/wordpress-zh_CN/wordpress/wp-includes/
H A Dclass-snoopy.php61 var $maxframes = 0; // frame content depth maximum. 0 = disallow variable in Snoopy
181 if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0)
188 if($this->_framedepth < $this->maxframes)
241 if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0)
248 if($this->_framedepth < $this->maxframes)
339 if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0)
346 if($this->_framedepth < $this->maxframes)
406 if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0)
413 if($this->_framedepth < $this->maxframes)
922 …if(($this->_framedepth < $this->maxframes) && preg_match_all("'<frame\s+.*src[\s]*=[\'\"]?([^\'\"\…
[all …]
/dports/chinese/wordpress-zh_TW/wordpress/wp-includes/
H A Dclass-snoopy.php61 var $maxframes = 0; // frame content depth maximum. 0 = disallow variable in Snoopy
181 if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0)
188 if($this->_framedepth < $this->maxframes)
241 if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0)
248 if($this->_framedepth < $this->maxframes)
339 if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0)
346 if($this->_framedepth < $this->maxframes)
406 if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0)
413 if($this->_framedepth < $this->maxframes)
922 …if(($this->_framedepth < $this->maxframes) && preg_match_all("'<frame\s+.*src[\s]*=[\'\"]?([^\'\"\…
[all …]
/dports/www/xoops/XoopsCore25-2.5.10/htdocs/class/
H A Dsnoopy.php52 var $maxframes = 0; // frame content depth maximum. 0 = disallow variable in Snoopy
166 if ($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) {
171 if ($this->_framedepth < $this->maxframes) {
214 if ($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) {
219 if ($this->_framedepth < $this->maxframes) {
300 if ($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) {
305 if ($this->_framedepth < $this->maxframes) {
355 if ($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) {
360 if ($this->_framedepth < $this->maxframes) {
853 …if (($this->_framedepth < $this->maxframes) && preg_match_all("'<frame\s+.*src[\s]*=[\'\"]?([^\'\"…
[all …]
/dports/games/ecwolf/ecwolf-1.3.3-src/src/
H A Dr_sprites.cpp261 uint8_t maxframes = 0; in R_InitSprites() local
274 if(frame > maxframes) in R_InitSprites()
275 maxframes = frame; in R_InitSprites()
283 if(frame > maxframes) in R_InitSprites()
284 maxframes = frame; in R_InitSprites()
291 ++maxframes; in R_InitSprites()
292 for(unsigned int j = 0;j < maxframes;++j) in R_InitSprites()
310 loadedSprites[i].numFrames = maxframes; in R_InitSprites()
/dports/devel/ptlib/ptlib-2.10.11/src/ptlib/unix/beaudio/
H A DAudioFileWriter.h29 size_t maxframes; variable
37 maxframes(maxsize) in pfile()
210 if (totalframes+numframes>maxframes) in writewavfile()
/dports/games/ioquake3/ioquake3-1.36/code/botlib/
H A Dbe_aas_move.h42 int maxframes, float frametime,
50 int maxframes, float frametime,
/dports/games/ioquake3-server/ioquake3-1.36/code/botlib/
H A Dbe_aas_move.h42 int maxframes, float frametime,
50 int maxframes, float frametime,
/dports/games/tremulous/tremulous/tremulous-1.1.0-src/src/botlib/
H A Dbe_aas_move.h43 int maxframes, float frametime,
51 int maxframes, float frametime,

12345678910>>...12