Searched refs:samples (Results 26 - 50 of 85) sorted by relevance

1234

/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp404 // FIXME: note that some output color spaces do not need the samples
513 JSAMPARRAY samples() const { return m_samples; } function in class:WebCore::JPEGImageReader
640 void setPixel(ImageFrame& buffer, ImageFrame::PixelData* currentAddress, JSAMPARRAY samples, int column) argument
642 JSAMPLE* jsample = *samples + column * (colorSpace == JCS_RGB ? 3 : 4);
667 JSAMPARRAY samples = m_reader->samples(); local
676 if (jpeg_read_scanlines(info, samples, 1) != 1)
685 qcms_transform_data(m_reader->colorTransform(), *samples, *samples, info->output_width);
690 setPixel<colorSpace>(buffer, currentAddress, samples, isScale
[all...]
/macosx-10.10/tcl-105/tcl_ext/snack/snack/generic/
H A DSnackOgg.c161 extern long ov_read_float(OggVorbis_File *vf,float ***pcm_channels,int samples,
687 /* less than zero? This is a stream with samples trimmed off
834 int i,samples; local
856 samples=vorbis_synthesis_pcmout(&vf->vd,NULL);
858 granulepos-=samples;
1193 /* returns: total PCM length (samples) of content if i==-1 PCM length
1194 (samples) of that logical bitstream for i==0 to n
1595 /* discard samples until we reach the desired position. Crossing a
1600 long samples=vorbis_synthesis_pcmout(&vf->vd,&pcm); local
1602 if(samples>targe
1791 long samples; local
1936 long samples=vorbis_synthesis_pcmout(&vf->vd,&pcm); local
[all...]
H A DjkSynthesis.c48 float mem[2]; /* last two samples */
210 float samples[MAX_SAMPLES]; member in struct:generatorFilter
330 /* read input samples (if any) - this is used by the SAMPLED wave type*/
334 tmp = mf->samples[ii] = in[i];
411 v[0] = mf->samples[i0];
412 v[1] = mf->samples[i1];
/macosx-10.10/ICU-531.30/icuSources/samples/cal/
H A DMakefile.in1 ## Makefile.in for ICU - samples/cal
15 subdir = samples/cal
/macosx-10.10/ICU-531.30/icuSources/samples/date/
H A DMakefile.in1 ## Makefile.in for ICU - samples/date
15 subdir = samples/date
/macosx-10.10/ICU-531.30/icuSources/test/perf/collationperf/
H A DMakefile.in58 $(INVOKE) ./$(TARGET) -loop 200 -file $(top_srcdir)/extra/uconv/samples/utf8/utf-8-demo.txt -keygen -shifted
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Dacl_preauth.cpp152 uint32 count() const { return cred() ? cred()->samples().length() : 0; }
155 { assert(n < count()); return cred()->samples()[n]; }
/macosx-10.10/Security-57031.1.35/Security/include/securityd_client/
H A Dsstransit.cpp62 // In addition, scan the samples for "special" database locking samples
71 for (uint32 n = 0; n < value()->samples().length(); n++) {
72 TypedList sample = value()->samples()[n];
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A Dacl_preauth.cpp152 uint32 count() const { return cred() ? cred()->samples().length() : 0; }
155 { assert(n < count()); return cred()->samples()[n]; }
/macosx-10.10/Security-57031.1.35/Security/libsecurityd/lib/
H A Dsstransit.cpp62 // In addition, scan the samples for "special" database locking samples
71 for (uint32 n = 0; n < value()->samples().length(); n++) {
72 TypedList sample = value()->samples()[n];
/macosx-10.10/dtrace-147/test/tst/common/ustack/
H A Dtst.spin.ksh48 * Toss out the first 100 samples to wait for the program to enter
102 die "too few samples (\$count)\n" unless \$count >= 1000;
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/doc/
H A Dscriptview.cgi33 samples/SOAP-tests.tcl samples/XMLRPC-tests.tcl }
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Ddexplorer21 # dexplorer # default is 5 second samples
22 # dexplorer -y -i30 # no prompting, with 30 second samples
68 samples=20 # max number of tests
93 dexplorer # default is 5 second samples
94 dexplorer -y -i30 # no prompting, with 30 second samples
155 (( total = interval * samples ))
180 (( percent = current * 100 / samples ))
/macosx-10.10/dtrace-147/DTTk/
H A Ddexplorer21 # dexplorer # default is 5 second samples
22 # dexplorer -y -i30 # no prompting, with 30 second samples
68 samples=20 # max number of tests
93 dexplorer # default is 5 second samples
94 dexplorer -y -i30 # no prompting, with 30 second samples
155 (( total = interval * samples ))
180 (( percent = current * 100 / samples ))
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/pds/
H A Dtif_pdsdirread.c880 * Fetch samples/pixel short values for
887 int samples = tif->tif_dir.td_samplesperpixel; local
890 if (CheckDirCount(tif, dir, (uint32) samples)) {
894 if (samples > NITEMS(buf))
895 v = (uint16*) _TIFFmalloc(samples * sizeof (uint16));
898 for (i = 1; i < samples; i++)
916 * Fetch samples/pixel ANY values for
923 int samples = (int) tif->tif_dir.td_samplesperpixel; local
926 if (CheckDirCount(tif, dir, (uint32) samples)) {
930 if (samples > NITEM
[all...]
H A Dtif_pdsdirwrite.c223 /* Deleted "write out extra samples tag" code here. */
510 * samples/pixel array of SHORT values and
519 int i, status, samples = tif->tif_dir.td_samplesperpixel; local
521 if (samples > NITEMS(buf))
522 w = (uint16*) _TIFFmalloc(samples * sizeof (uint16));
524 for (i = 0; i < samples; i++)
526 status = TIFFWriteShortArray(tif, TIFF_SHORT, tag, dir, samples, w);
533 * Setup a directory entry that references a samples/pixel array of ``type''
544 int samples = (int) tif->tif_dir.td_samplesperpixel; local
546 if (samples > NITEM
[all...]
/macosx-10.10/PowerManagement-494.1.2/pmconfigd/
H A DPMAssertionLog.c767 CFMutableDictionaryRef samples = NULL; local
798 samples = IOReportCreateSamplesRaw(aggStats.legend, aggStats.reportBufs, NULL);
803 if (samples == 0) {
808 serializedArray = CFPropertyListCreateData(0, samples,
822 if (samples)
823 CFRelease(samples);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/simulation/
H A Drandom.tcl512 set samples 100000
516 for { set i 0 } { $i < $samples } { incr i } {
526 set expected [expr {int($samples * pow($lambda,$i) * exp(-$lambda) / [::math::factorial $i])}]
/macosx-10.10/top-100.1.2/
H A Dpreferences.c46 int samples; member in struct:__anon14168
76 .samples = -1,
581 return prefs.samples;
585 prefs.samples = s;
/macosx-10.10/ntp-92/scripts/monitoring/
H A Dntploopwatch24 undef($samples);
35 $F -P[<printer>] [-s<samples>]
46 -s +samples[=<samples>]
123 (/^-s(\d*)$/ || /^\+samples=?(\d*)$/) &&
124 (($samples = ($1 eq "") ? (shift || die($usage)): $1), next);
151 defined($samples) &&
152 print "WARNING: your samples value may be shadowed by config file settings\n";
295 ($c eq 'samples') && (!defined($PrintIt) || !defined($samples))
[all...]
/macosx-10.10/ICU-531.30/
H A Dmakefile455 MANUAL_CLEAN_EXTRA = ./extra/scrptrun ./samples/layout ./extra/ustdio ./extra
457 MANUAL_CLEAN_SAMPLE = ./samples/layout ./samples
467 CONFIG_FLAGS = --disable-renaming --disable-extras --disable-layout --disable-samples --disable-icuio \
471 CONFIG_FLAGS = --disable-renaming --disable-extras --disable-layout --disable-samples --disable-icuio \
477 CONFIG_FLAGS = --disable-renaming --disable-extras --disable-layout --disable-samples \
481 CONFIG_FLAGS = --disable-renaming --disable-extras --disable-layout --disable-samples \
486 CONFIG_FLAGS = --disable-renaming --disable-extras --disable-layout --disable-samples --disable-icuio \
490 CONFIG_FLAGS = --disable-renaming --disable-extras --disable-layout --disable-samples \
945 samples
[all...]
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dkcdatabase.cpp725 // or you run out. If no special samples are found at all, interpret that as
743 list<CssmSample> samples; local
744 if (creds && creds->samples().collect(CSSM_SAMPLE_TYPE_KEYCHAIN_LOCK, samples)) {
745 for (list<CssmSample>::iterator it = samples.begin(); it != samples.end(); it++) {
851 list<CssmSample> samples; local
852 if (creds && creds->samples().collect(CSSM_SAMPLE_TYPE_KEYCHAIN_CHANGE_LOCK, samples)) {
853 for (list<CssmSample>::iterator it = samples
[all...]
/macosx-10.10/ICU-531.30/icuSources/samples/layout/
H A DMakefile.in1 ## Makefile.in for ICU - samples/layout
17 subdir = samples/layout
/macosx-10.10/ICU-531.30/icuSources/test/perf/howExpensiveIs/
H A Dsieve.cpp196 uint32_t samples = SAMPLES; local
206 meanSieveTime = uprv_getMeanTime(times, &samples,&meanSieveME);
/macosx-10.10/OpenAL-54/Source/OpenAL/al/
H A Dalc.h247 ALC_API void ALC_APIENTRY alcCaptureSamples( ALCdevice *device, ALCvoid *buffer, ALCsizei samples );
271 typedef void (ALC_APIENTRY *LPALCCAPTURESAMPLES)( ALCdevice *device, ALCvoid *buffer, ALCsizei samples );

Completed in 163 milliseconds

1234