Searched refs:col (Results 1 - 25 of 926) sorted by path

1234567891011>>

/external/aac/libSBRdec/src/
H A Dsbrdec_drc.cpp185 \col Number of the time slot.
195 int col,
225 col += indx;
230 if (col < (numQmfSubSamples>>1)) { /* first half of current frame */
232 int j = col + (numQmfSubSamples>>1);
254 else if (col < numQmfSubSamples) { /* second half of current frame */
256 int j = col - (numQmfSubSamples>>1);
295 int j = col - (numQmfSubSamples>>1);
317 col -= numQmfSubSamples;
379 if (col
191 sbrDecoder_drcApplySlot( HANDLE_SBR_DRC_CHANNEL hDrcData, FIXP_DBL *qmfRealSlot, FIXP_DBL *qmfImagSlot, int col, int numQmfSubSamples, int maxShift ) argument
487 int col; local
[all...]
H A Dsbrdec_drc.h139 int col,
/external/aac/libSBRenc/src/
H A Dps_encode.cpp855 int group, bin, col, subband, band; local
897 for (col=envBorder[env]; col<envBorder[env+1]; col++) {
899 FIXP_QMF l_real = (hybridData[col][0][0][subband]) << scale;
900 FIXP_QMF l_imag = (hybridData[col][0][1][subband]) << scale;
901 FIXP_QMF r_real = (hybridData[col][1][0][subband]) << scale;
902 FIXP_QMF r_imag = (hybridData[col][1][1][subband]) << scale;
H A Dps_main.cpp551 INT group, bin, col, band; local
576 for (col=0; col<frameSize-HYBRID_READ_OFFSET; col++) {
578 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][0][0][i]));
579 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][0][1][i]));
580 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][1][0][i]));
581 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][1][1][i]));
587 for (col=frameSize-HYBRID_READ_OFFSET; col<frameSiz
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas83 /// The Lexer tracks line/col info as well as input index so its markers are
1421 /// imaginary nodes w/o line/col info. We now search backwards looking
1422 /// for most recent token with line/col info, but notify getErrorHeader()
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBaseRecognizer.pm226 my $col = $e->get_char_position_in_line();
228 return "line $line:$col";
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb244 col = token.column rescue -1
246 [ id, type, line, col, index ].join( "\t" )
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammar.java318 /** For ANTLRWorks, we want to be able to map a line:col to a specific
1232 // create map from line:col to decision DFA (for ANTLRWorks)
1241 int col = decisionAST.getCharPositionInLine();
1243 .append(col).toString(), lookaheadDFA);
1343 // create map from line:col to decision DFA (for ANTLRWorks)
2810 * This is not particularly fast as it walks entire line:col->DFA map
2827 public DFA getLookaheadDFAFromPositionInFile(int line, int col) { argument
2829 new StringBuffer().append(line + ":").append(col).toString());
H A DGrammarAST.java300 int col=0;
302 col = token.getCharPositionInLine();
304 if ( col==0 ) {
307 col = child.getCharPositionInLine();
310 return col;
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateFactory2Test.java143 Collection col = certFactory.generateCertificates(dis);
144 assertNull("Result must be null", col);
158 col = certFactory.generateCRLs(dis);
159 assertNull("Result must be null", col);
H A DCertificateFactory3Test.java110 Collection col = null;
111 col = certFs[i].generateCertificates(new ByteArrayInputStream(
113 Iterator it = col.iterator();
114 assertEquals("Incorrect Collection size", col.size(), 1);
H A DCertificateFactorySpiTest.java92 Collection col = certFactorySpi
94 assertNull("Not null Collection", col);
160 Collection col = certFactorySpi
162 assertNull("Result must be null", col);
176 col = certFactorySpi.engineGenerateCRLs(dis);
177 assertNull("Result must be null", col);
230 Collection col = certFactorySpi
232 assertNull("Result must be null", col);
246 col = certFactorySpi.engineGenerateCRLs(dis);
247 assertNull("Result must be null", col);
[all...]
/external/apache-harmony/security/src/test/api/java/tests/api/java/security/
H A DAccessControlContextTest.java39 PermissionCollection col = perm.newPermissionCollection();
40 col.add(perm);
41 final ProtectionDomain pd = new ProtectionDomain(null, col);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java717 // @param col
721 private static String getData(int col, int startRow) { argument
724 if (datas[i][col] != null) {
725 return datas[i][col];
730 if (datas[i][col] != null) {
731 return datas[i][col];
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java28 Collection<Integer> col; // must contain the Integers 0 to 99 field in class:Support_CollectionTest
36 col = c;
41 new Support_UnmodifiableCollectionTest("", col).runTest();
50 assertTrue("CollectionTest - a) add did not work", col.add(new Integer(
52 assertTrue("CollectionTest - b) add did not work", col
56 assertTrue("CollectionTest - a) remove did not work", col
58 assertTrue("CollectionTest - b) remove did not work", !col
62 assertTrue("CollectionTest - a) addAll failed", col
64 assertTrue("CollectionTest - b) addAll failed", col
68 assertTrue("CollectionTest - a) containsAll failed", col
[all...]
H A DSupport_UnmodifiableCollectionTest.java29 Collection<Integer> col; field in class:Support_UnmodifiableCollectionTest
40 col = c;
47 assertTrue("UnmodifiableCollectionTest - should contain 0", col
49 assertTrue("UnmodifiableCollectionTest - should contain 50", col
51 assertTrue("UnmodifiableCollectionTest - should not contain 100", !col
61 col.containsAll(hs));
65 !col.containsAll(hs));
68 assertTrue("UnmodifiableCollectionTest - should not be empty", !col
72 Iterator<Integer> it = col.iterator();
89 + col
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializerBase.java308 final int col = qname.lastIndexOf(':');
309 return (col > 0) ? qname.substring(col + 1) : qname;
821 final int col = qname.indexOf(':');
822 return (col > 0) ? qname.substring(0, col) : null;
823 //return (col > 0) ? qname.substring(0,col) : "";
859 int col = qname.lastIndexOf(':');
860 final String prefix = (col >
[all...]
/external/bison/build-aux/
H A Dtexinfo.tex3813 % @item first col stuff @tab second col stuff @tab third col
3815 % first col stuff
3817 % second col stuff
3819 % third col
3820 % @item first col stuff @tab second col stuff
3857 \expandafter\xdef\csname col\the\colcount\endcsname{#1\hsize}%
3876 \expandafter\xdef\csname col\th
[all...]
/external/bison/
H A Dmaint.mk605 # man signal.h|col -b|perl -ne '/bsd_signal.*;/.../sigwaitinfo.*;/ and print' \
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DCertStoreCollectionSpi.java38 List col = new ArrayList();
49 col.add(obj);
61 col.add(obj);
66 return col;
74 List col = new ArrayList();
85 col.add(obj);
97 col.add(obj);
102 return col;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DCollectionStore.java41 List col = new ArrayList();
50 col.add(obj);
54 return col;
/external/ceres-solver/examples/
H A Dellipse_approximation.cc398 X.col(0) = w.array().cos();
399 X.col(1) = w.array().sin();
H A Dlibmv_homography.cc297 x1_.col(i),
298 x2_.col(i));
340 new HomographySymmetricGeometricCostFunctor(x1.col(i),
341 x2.col(i));
/external/ceres-solver/include/ceres/
H A Ddynamic_numeric_diff_cost_function.h207 parameter_jacobian.col(j).matrix() = residuals;
219 parameter_jacobian.col(j) -= residuals;
223 parameter_jacobian.col(j) -=
229 parameter_jacobian.col(j) *= one_over_h;

Completed in 913 milliseconds

1234567891011>>