HomeSort by relevance Sort by last modified time
    Searched defs:col (Results 26 - 50 of 198) sorted by null

12 3 4 5 6 7 8

  /external/jpeg/
rdcolmap.c 174 unsigned int w, h, maxval, row, col; local
195 for (col = 0; col < w; col++) {
206 for (col = 0; col < w; col++) {
wrppm.c 111 register JDIMENSION col; local
115 for (col = dest->samples_per_row; col > 0; col--) {
138 register JDIMENSION col; local
142 for (col = cinfo->output_width; col > 0; col--) {
160 register JDIMENSION col; local
164 for (col = cinfo->output_width; col > 0; col--)
    [all...]
wrrle.c 179 int row, col; local
244 for (col = cinfo->output_width; col > 0; col--) {
wrtarga.c 106 register JDIMENSION col; local
110 for (col = cinfo->output_width; col > 0; col--) {
127 register JDIMENSION col; local
131 for (col = cinfo->output_width; col > 0; col--) {
151 register JDIMENSION col; local
155 for (col = cinfo->output_width; col > 0; col--)
    [all...]
jcdctmgr.c 93 * coefficients scaled by scalefactor[row]*scalefactor[col], where
131 * coefficients scaled by scalefactor[row]*scalefactor[col], where
139 int row, col; local
153 for (col = 0; col < DCTSIZE; col++) {
156 aanscalefactor[row] * aanscalefactor[col] * 8.0)));
jddctmgr.c 41 extern void armv6_idct(short *coefs, int *quans, unsigned char **rows, int col);
214 * coefficients scaled by scalefactor[row]*scalefactor[col], where
270 * coefficients scaled by scalefactor[row]*scalefactor[col], where
275 int row, col; local
283 for (col = 0; col < DCTSIZE; col++) {
286 aanscalefactor[row] * aanscalefactor[col]);
rdppm.c 148 JDIMENSION col; local
151 for (col = cinfo->image_width; col > 0; col--) {
166 JDIMENSION col; local
169 for (col = cinfo->image_width; col > 0; col--) {
186 JDIMENSION col; local
192 for (col = cinfo->image_width; col > 0; col--)
207 JDIMENSION col; local
245 JDIMENSION col; local
269 JDIMENSION col; local
    [all...]
rdrle.c 209 JDIMENSION col; local
219 for (col = cinfo->image_width; col > 0; col--) {
244 JDIMENSION row, col; local
295 for (col = 0; col < cinfo->image_width; col++) {
298 (colormap[GETJSAMPLE(rle_row[channel][col]) + 256 * channel] >> 8);
321 for (col = cinfo->image_width; col > 0; col--)
    [all...]
wrbmp.c 78 register JDIMENSION col; local
92 for (col = cinfo->output_width; col > 0; col--) {
113 register JDIMENSION col; local
125 for (col = cinfo->output_width; col > 0; col--) {
351 register JDIMENSION col; local
370 for (col = dest->row_width; col > 0; col--)
    [all...]
wrgif.c 324 register JDIMENSION col; local
327 for (col = cinfo->output_width; col > 0; col--) {
  /external/srec/srec/clib/
matrix_i.c 46 double *col, **input; local
56 col = (double *) CALLOC(dim, sizeof(double), "clib.col");
69 col[ii] = 0;
70 col[jj] = 1;
71 lubksb(input, dim, index, col);
73 inv[ii][jj] = col[ii];
78 FREE((char *)col);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.cpp 49 vector<char *> col; local
50 SplitToVector(line, "\n\t ", &col, true);
51 if (col.size() == 0) // empty line
53 if (col.size() != 2) {
58 const char *symbol = col[0];
59 const char *value = col[1];
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.c 182 u32 row, col; local
200 col = mbNum % picWidth;
203 lum = (image->data + row * picWidth * 256 + col * 16);
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8);
h264bsd_transform.c 101 u32 row,col; local
170 for (col = 4; col--; data++)
258 u32 row,col; local
306 for (col = 4; col--; data++)
322 for (col = 4; col--; data++)
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsAdapter.java 57 int col = cursor.getColumnIndex(columnName); local
58 return getStringOrNull(cursor, col);
61 private static String getStringOrNull(Cursor cursor, int col) {
62 if (col < 0) return null;
64 return cursor.getString(col);
66 Log.e(TAG, "Failed to get column " + col + " from cursor", e);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplayLog.java 265 TableColumn col = TableHelper.createTableColumn( local
268 col.addControlListener(new ControlAdapter() {
278 col = TableHelper.createTableColumn(
281 col.addControlListener(new ControlAdapter() {
291 col = TableHelper.createTableColumn(
294 col.addControlListener(new ControlAdapter() {
304 col = TableHelper.createTableColumn(
307 col.addControlListener(new ControlAdapter() {
317 col = TableHelper.createTableColumn(
320 col.addControlListener(new ControlAdapter()
363 TableColumn col = mLogTable.getColumn(index); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModificationExceptionTest.java 29 Collection col; field in class:ConcurrentModificationExceptionTest.CollectionModifier
34 col = c;
44 col.add(someItem);
45 col.remove(someItem);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory3Test.java 110 Collection col = null; local
111 col = certFs[i].generateCertificates(new ByteArrayInputStream(
113 Iterator it = col.iterator();
114 assertEquals("Incorrect Collection size", col.size(), 1);
CertificateFactorySpiTest.java 93 Collection col = certFactorySpi local
95 assertNull("Not null Collection", col);
161 Collection col = certFactorySpi local
163 assertNull("Result must be null", col);
177 col = certFactorySpi.engineGenerateCRLs(dis);
178 assertNull("Result must be null", col);
231 Collection col = certFactorySpi local
233 assertNull("Result must be null", col);
247 col = certFactorySpi.engineGenerateCRLs(dis);
248 assertNull("Result must be null", col);
    [all...]
  /external/collada/src/modules/STLDatabase/
daeSTLDatabase.cpp 396 daeDocument *col = getDocument( tempURI.getURI() ); local
397 if ( col == NULL ) {
406 if ( col == (*i).second->getDocument() )
435 daeDocument *col = getDocument( tempURI.getURI() ); local
436 if ( col == NULL ) {
445 if ( col == (*i)->getDocument() )
462 daeDocument *col = getDocument( tempURI.getURI() ); local
463 if ( col == NULL ) {
477 if( col == (*i)->getDocument() )
524 daeDocument *col = getDocument( tempURI.getURI() ) local
581 daeDocument *col = getDocument( tempURI.getURI() ); local
620 daeDocument *col = getDocument( tempURI.getURI() ); local
    [all...]
  /external/e2fsprogs/debugfs/
htree.c 38 int thislen, col = 0; local
97 if (col + thislen > 80) {
99 col = 0;
102 col += thislen;
  /external/icu4c/test/intltest/
dadrcoll.cpp 149 DataDrivenCollatorTest::processArguments(Collator *col, const UChar *start, int32_t optLen) {
161 col->setAttribute(attrib, value, status);
169 Collator *col = NULL; local
183 col = Collator::createInstance(localeName, status);
195 col = new RuleBasedCollator(testSetting, status);
211 if(col != NULL){
212 RuleBasedCollator* rbc = (RuleBasedCollator*)col;
228 processArguments(col, arguments, argLen);
243 processSequence(col, sequence);
254 delete col;
    [all...]
mnkytst.cpp 220 Collator *col = Collator::createInstance("en_US", status); local
221 const UnicodeString baseRules = ((RuleBasedCollator*)col)->getRules();
249 delete col;
  /external/libpng/contrib/pngminus/
png2pnm.c 204 int row, col; local
376 for (col = 0; col < width; col++)
413 if (col % 4 == 3)
415 } /* end for col */
418 if (col % 4 != 0)
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.h 18 int col; member in struct:TMatrixFields

Completed in 3171 milliseconds

12 3 4 5 6 7 8