Searched refs:extension (Results 1 - 25 of 2483) sorted by path

1234567891011>>

/external/aac/libAACenc/src/
H A Daacenc.cpp762 /* reset extension payload */
763 FDKmemclear(&qcOut->qcElement[el]->extension, (1)*sizeof(QC_OUT_EXTENSION));
773 qcOut->qcElement[el]->extension[idx].type = extPayload[n].dataType; /* Perform a sanity check on the type? */
774 qcOut->qcElement[el]->extension[idx].nPayloadBits = extPayload[n].dataSize;
775 qcOut->qcElement[el]->extension[idx].pPayload = extPayload[n].pData;
779 &qcOut->qcElement[el]->extension[idx],
788 /* sum up extension and static bits for all channel elements */
800 /* reset extension payload */
801 FDKmemclear(&qcOut->extension, (2+2)*sizeof(QC_OUT_EXTENSION));
803 /* Add extension payloa
[all...]
H A Dbitenc.cpp631 description: write extension payload to bitstream
711 writeBits -= 8; /* acount for the extension type and the fill nibble */
816 description: write extension payload to bitstream
908 /* ER or scalable syntax -> write extension en bloc */
1332 /* Write associated extension payload */
1335 &qcOut->qcElement[i]->extension[n],
1363 UCHAR channelElementExtensionWritten[(8)][(1)]; /* 0: extension not touched, 1: extension already written */
1372 if ( (qcOut->qcElement[i]->extension[n].type==EXT_SBR_DATA)
1373 || (qcOut->qcElement[i]->extension[
[all...]
H A Dqc_data.h190 EXT_PAYLOAD_TYPE type; /* type of the extension payload */
203 INT nExtensions; /* number of extension payloads for this element */
204 QC_OUT_EXTENSION extension[(1)]; /* reffering extension payload */ member in struct:__anon135
222 QC_OUT_EXTENSION extension[(2+2)]; /* global extension payload */ member in struct:__anon136
223 INT nExtensions; /* number of extension payloads for this AU */
227 INT elementExtBits; /* element associated extension payload bits, e.g. sbr, drc ... */
228 INT globalExtBits; /* frame/au associated extension payload bits (anc data ...) */
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
H A DX509CertSelectorTest.java1251 * matches the certificate which does not have a keyUsage extension.
1273 assertTrue("The certificate which does not have a keyUsage extension "
1331 assertTrue("The certificate which does not have a keyUsage extension "
2131 Extension extension = new Extension("2.5.29.17",
2134 extensions.addExtension(extension);
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
H A DCertificateTest.java153 Extension extension = new Extension("2.5.29.17", true, sans.getEncoded());
155 extensions.addExtension(extension);
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java1077 // The current id for extension functions.
1092 * Compile an extension function.
1121 Function extension = new FuncExtFunction(ns, funcName, String.valueOf(getNextMethodId()));
1131 extension.setArg(this.compile(opPos), i);
1143 return extension;
/external/bison/build-aux/
H A Dtexinfo.tex4289 % the file that accumulates this index. The file's extension is foo.
8444 % #1 is (mandatory) image filename; we tack on .eps extension.
8447 % #5 is (ignored optional) extension.
/external/bison/doc/
H A Dbison.x22 code in the input file, you can end his name by a C++-like extension
23 (.ypp or .y++), then bison will follow your extension to name the
/external/bison/src/
H A Dmuscle-tab.c179 char *extension = NULL; local
185 extension = obstack_finish (&muscle_obstack);
186 muscle_grow (key, extension, "");
187 obstack_free (&muscle_obstack, extension);
268 char *extension; local
277 extension = obstack_finish (&muscle_obstack);
278 muscle_grow (key, extension, "");
279 obstack_free (&muscle_obstack, extension);
/external/blktrace/btreplay/doc/
H A Dbtreplay.tex516 the input file name used with an extension of \texttt{.rep} appended onto
/external/blktrace/btt/doc/
H A Dbtt.tex1019 form, with a \texttt{.dat} extension (as an example, with \texttt{-u
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DExtensions.java66 * @param extension a single extension.
69 Extension extension)
71 this.ordering.addElement(extension.getExtnId());
72 this.extensions.put(extension.getExtnId(), extension);
93 * return an Enumeration of the extension field's object ids.
101 * return the extension represented by the object identifier
104 * @return the extension if it's present, null otherwise.
113 * return the parsed value of the extension represente
68 Extensions( Extension extension) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509CRLStoreSelector.java7 import org.bouncycastle.x509.extension.X509ExtensionUtil;
170 * extension set. Defaults to <code>false</code>.
173 * indicator extension are selected.
182 * CRL indicator CRL extension.
188 * extension must be in the CRL.
293 * which is a missing issuing distribution point extension.
311 * The issuing distribution point extension is a CRL extension which
323 * This is the DER encoded OCTET STRING extension value.
H A DX509V3CertificateGenerator.java39 import org.bouncycastle.x509.extension.X509ExtensionUtil;
224 * add a given extension field for the standard extensions tag (tag 3)
235 * add a given extension field for the standard extensions tag (tag 3)
246 * add a given extension field for the standard extensions tag (tag 3)
248 * with the extension.
259 * add a given extension field for the standard extensions tag (tag 3)
270 * add a given extension field for the standard extensions tag (tag 3)
271 * copying the extension value from another certificate.
272 * @throws CertificateParsingException if the extension cannot be extracted.
284 throw new CertificateParsingException("extension "
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
H A DAuthorityKeyIdentifierStructure.java1 package org.bouncycastle.x509.extension;
31 * @param encodedValue a DER octet encoded string with the extension structure in it.
42 * Constructor which will take an extension
44 * @param extension a X509Extension object containing an AuthorityKeyIdentifier.
48 X509Extension extension)
50 super((ASN1Sequence)extension.getParsedValue());
54 * Constructor which will take an extension
56 * @param extension a X509Extension object containing an AuthorityKeyIdentifier.
59 Extension extension)
61 super((ASN1Sequence)extension
47 AuthorityKeyIdentifierStructure( X509Extension extension) argument
58 AuthorityKeyIdentifierStructure( Extension extension) argument
[all...]
H A DSubjectKeyIdentifierStructure.java1 package org.bouncycastle.x509.extension;
21 * @param encodedValue a DER octet encoded string with the extension structure in it.
H A DX509ExtensionUtil.java1 package org.bouncycastle.x509.extension;
/external/chromium-trace/trace-viewer/build/
H A Dparse_deps.py55 def _find_and_load(self, current_module, requested_name, extension):
58 filename = pathy_name + extension
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Decho_client.py454 # TODO(bashi): Support the new style perframe compression extension.
455 for extension in accepted_extensions:
456 extension_name = extension.name()
458 len(extension.get_parameter_names()) == 0 and
466 processor = DeflateFrameExtensionProcessor(extension)
472 'Unexpected extension %r' % extension_name)
958 help='use deflate-stream extension. This value will be '
964 help='use deflate-frame extension. This value will be '
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dcommon.py156 """Holds information about an extension which is exchanged on extension
229 extension = ExtensionParameter(extension_token)
240 _parse_extension_param(state, extension, allow_quoted_string)
246 return extension
260 extension = _parse_extension(state, allow_quoted_string)
261 if extension is not None:
262 extension_list.append(extension)
279 'No valid extension entry found')
284 def format_extension(extension)
[all...]
H A Dextensions.py52 """WebSocket DEFLATE stream extension processor."""
67 'Enable %s extension', common.DEFLATE_STREAM_EXTENSION)
108 """WebSocket Per-frame DEFLATE extension processor."""
173 'Enable %s extension ('
273 # Adding vendor-prefixed deflate-frame extension.
280 """Parses the value of "method" extension parameter."""
288 extension = common.ExtensionParameter(method_name)
290 extension.add_parameter(name, value)
291 return common.format_extension(extension)
295 """Base class for Per-frame and Per-message compression extension
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dclient_for_testing.py432 # Scan accepted extension list to check if there is any unrecognized
435 # used later by each extension.
439 for extension in accepted_extensions:
440 if extension == '':
442 if extension == _DEFLATE_STREAM_EXTENSION:
446 if extension == _DEFLATE_FRAME_EXTENSION:
450 if extension == _MUX_EXTENSION:
456 'Received unrecognized extension: %s' % extension)
458 # Let all extensions check the response for extension reques
[all...]
H A Dtest_handshake.py146 same members as extension definitions in expected_list. Extension
147 definition used in this test is a pair of an extension name and a
230 extension = ExtensionParameter(name)
231 extension._parameters = parameters
232 extensions.append(extension)
H A Dtest_handshake_hybi.py252 extension = request.ws_extensions[0]
253 self.assertEqual('deflate-stream', extension.name())
254 self.assertEqual(0, len(extension.get_parameter_names()))
H A Dtest_handshake_hybi08.py252 extension = request.ws_extensions[0]
253 self.assertEqual('deflate-stream', extension.name())
254 self.assertEqual(0, len(extension.get_parameter_names()))

Completed in 3072 milliseconds

1234567891011>>