Home
last modified time | relevance | path

Searched refs:dct (Results 1 – 25 of 75) sorted by relevance

123

/external/chromium_org/tools/deep_memory_profiler/lib/
Dsorter.py162 def __init__(self, dct): argument
163 self._name = dct['name']
164 self._hidden = dct.get('hidden', False)
165 self._subs = dct.get('subs', [])
185 def __init__(self, dct): argument
186 super(VMRule, self).__init__(dct)
187 self._backtrace_function = dct.get('backtrace_function', None)
190 self._backtrace_sourcefile = dct.get('backtrace_sourcefile', None)
193 self._mmap = dct.get('mmap', None)
194 self._sharedwith = dct.get('sharedwith', [])
[all …]
/external/chromium_org/tools/linux/
Dprocfs.py200 def __init__(self, raw, dct): argument
202 self._pid = dct.get('Pid')
203 self._name = dct.get('Name')
204 self._vm_peak = dct.get('VmPeak')
205 self._vm_size = dct.get('VmSize')
206 self._vm_lck = dct.get('VmLck')
207 self._vm_pin = dct.get('VmPin')
208 self._vm_hwm = dct.get('VmHWM')
209 self._vm_rss = dct.get('VmRSS')
210 self._vm_data = dct.get('VmData')
[all …]
/external/chromium_org/third_party/simplejson/
Dencoder.py431 def _iterencode_dict(dct, _current_indent_level): argument
432 if not dct:
436 markerid = id(dct)
439 markers[markerid] = dct
451 items = dct.items()
454 items = dct.items()
457 items = dct.iteritems()
D_speedups.c148 encoder_listencode_dict(PyEncoderObject *s, PyObject *rval, PyObject *dct, Py_ssize_t indent_level);
2319 encoder_listencode_dict(PyEncoderObject *s, PyObject *rval, PyObject *dct, Py_ssize_t indent_level) in encoder_listencode_dict() argument
2343 if (PyDict_Size(dct) == 0) in encoder_listencode_dict()
2348 ident = PyLong_FromVoidPtr(dct); in encoder_listencode_dict()
2357 if (PyDict_SetItem(s->markers, ident, dct)) { in encoder_listencode_dict()
2376 if (PyDict_CheckExact(dct)) in encoder_listencode_dict()
2377 items = PyDict_Items(dct); in encoder_listencode_dict()
2379 items = PyMapping_Items(dct); in encoder_listencode_dict()
2385 if (PyDict_CheckExact(dct)) in encoder_listencode_dict()
2386 items = PyDict_Keys(dct); in encoder_listencode_dict()
[all …]
/external/llvm/test/CodeGen/PowerPC/
D2008-07-15-SignExtendInreg.ll5 define signext i16 @t(i16* %dct) nounwind {
15 store i16 %dcval.0, i16* %dct, align 2
/external/chromium_org/third_party/libjpeg_turbo/
Djcdctmgr.c50 forward_DCT_method_ptr dct; member
425 forward_DCT_method_ptr do_dct = fdct->dct; in forward_DCT()
560 fdct->dct = jsimd_fdct_islow; in jinit_forward_dct()
562 fdct->dct = jpeg_fdct_islow; in jinit_forward_dct()
569 fdct->dct = jsimd_fdct_ifast; in jinit_forward_dct()
571 fdct->dct = jpeg_fdct_ifast; in jinit_forward_dct()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Ddatachannel.cc91 cricket::DataChannelType dct, in Create() argument
95 new rtc::RefCountedObject<DataChannel>(provider, dct, label)); in Create()
104 cricket::DataChannelType dct, in DataChannel() argument
109 data_channel_type_(dct), in DataChannel()
Ddatachannel.h107 cricket::DataChannelType dct,
174 cricket::DataChannelType dct,
Dwebrtcsessiondescriptionfactory.h100 cricket::DataChannelType dct,
/external/qemu/distrib/jpeg-6b/
Dusage.doc143 -dct int Use integer DCT method (default).
144 -dct fast Use fast integer DCT (less accurate).
145 -dct float Use floating-point DCT method.
224 to "-dct fast -nosmooth -onepass -dither ordered".
266 -dct int Use integer DCT method (default).
267 -dct fast Use fast integer DCT (less accurate).
268 -dct float Use floating-point DCT method.
348 "-dct fast" and/or "-nosmooth" gain speed at a small sacrifice in quality.
354 "-dct float" may be even faster than "-dct fast". But on most machines
355 "-dct float" is slower than "-dct int"; in this case it is not worth using,
Dmakefile.manx132 djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
133 djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
134 cjpeg -dct int -outfile testout.jpg testimg.ppm
135 djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
136 cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.vc129 .\djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
130 .\djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
131 .\cjpeg -dct int -outfile testout.jpg testimg.ppm
132 .\djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
133 .\cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.ansi132 ./djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
133 ./djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
134 ./cjpeg -dct int -outfile testout.jpg testimg.ppm
135 ./djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
136 ./cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.dj138 ./djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
139 ./djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
140 ./cjpeg -dct int -outfile testout.jpg testimg.ppm
141 ./djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
142 ./cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.wat140 djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
141 djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
142 cjpeg -dct int -outfile testout.jpg testimg.ppm
143 djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
144 cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.unix146 ./djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
147 ./djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
148 ./cjpeg -dct int -outfile testout.jpg testimg.ppm
149 ./djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
150 ./cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.sas170 djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
171 djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
172 cjpeg -dct int -outfile testout.jpg testimg.ppm
173 djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
174 cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
/external/jpeg/
Dusage.doc143 -dct int Use integer DCT method (default).
144 -dct fast Use fast integer DCT (less accurate).
145 -dct float Use floating-point DCT method.
224 to "-dct fast -nosmooth -onepass -dither ordered".
266 -dct int Use integer DCT method (default).
267 -dct fast Use fast integer DCT (less accurate).
268 -dct float Use floating-point DCT method.
348 "-dct fast" and/or "-nosmooth" gain speed at a small sacrifice in quality.
354 "-dct float" may be even faster than "-dct fast". But on most machines
355 "-dct float" is slower than "-dct int"; in this case it is not worth using,
Dmakefile.ansi132 ./djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
133 ./djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
134 ./cjpeg -dct int -outfile testout.jpg testimg.ppm
135 ./djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
136 ./cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.manx132 djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
133 djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
134 cjpeg -dct int -outfile testout.jpg testimg.ppm
135 djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
136 cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.vc129 .\djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
130 .\djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
131 .\cjpeg -dct int -outfile testout.jpg testimg.ppm
132 .\djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
133 .\cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.wat140 djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
141 djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
142 cjpeg -dct int -outfile testout.jpg testimg.ppm
143 djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
144 cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.dj138 ./djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
139 ./djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
140 ./cjpeg -dct int -outfile testout.jpg testimg.ppm
141 ./djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
142 ./cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.unix146 ./djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
147 ./djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
148 ./cjpeg -dct int -outfile testout.jpg testimg.ppm
149 ./djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
150 ./cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
Dmakefile.sas170 djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
171 djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
172 cjpeg -dct int -outfile testout.jpg testimg.ppm
173 djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
174 cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm

123