/external/openfst/src/include/fst/script/ |
encode.h | 24 #include <fst/encode.h> 33 void Encode(EncodeArgs *args) { 40 ? EncodeMapper<Arc>::Read(coder_fname, ENCODE) 41 : new EncodeMapper<Arc>(flags, ENCODE); 43 Encode(ofst, encoder); 50 void Encode(MutableFstClass *fst, uint32 flags, bool reuse_encoder,
|
/external/lzma/Asm/x86/ |
AesOpt.asm | 131 ; ---------- AES-CBC Encode ----------
133 ENCODE macro op:req
157 ENCODE LOAD_OP
210 ENCODE LOAD_OP_W
226 ENCODE LOAD_OP
|
/frameworks/base/core/java/android/content/pm/ |
VerifierDeviceIdentity.java | 94 private static final char ENCODE[] = { 104 final char[] alphabet = ENCODE;
|
/external/smack/src/org/jivesoftware/smack/util/ |
Base64.java | 28 public final static int ENCODE = 1;
43 * Encode using Base64-like encoding that is URL- and Filename-safe as described
54 * Encode using the special "ordered" dialect of Base64 described here:
432 * @param serializableObject The object to encode
459 * @param serializableObject The object to encode
482 b64os = new Base64.OutputStream( baos, ENCODE | options );
518 } // end encode
618 b64os = new Base64.OutputStream( baos, ENCODE | options );
1227 private boolean encode; \/\/ Encoding or decoding field in class:Base64.InputStream 1463 private boolean encode; field in class:Base64.OutputStream [all...] |
/external/openfst/src/include/fst/ |
encode.h | 0 // encode.h 19 // Class to encode and decoder an fst. 45 enum EncodeType { ENCODE = 1, DECODE = 2 }; 47 // Identifies stream data as an encode table (and its endianity) 54 // stores both the Tuple of encode labels and weights to a unique 84 // Hash function for EncodeTabe Tuples. Based on the encode flags 130 // Given an arc encode either input/ouptut labels or input/costs or both 131 Label Encode(const A &arc) { 158 // Given an encode arc Label decode back to input/output labels and costs 249 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source [all...] |
equivalent.h | 35 #include <fst/encode.h> 167 EncodeMapper<Arc> mapper(kEncodeWeights|kEncodeLabels, ENCODE);
|
minimize.h | 36 #include <fst/encode.h> 550 encoder(kEncodeLabels | kEncodeWeights, ENCODE); 551 Encode(&gfst, &encoder); 573 EncodeMapper<A> encoder(kEncodeLabels | kEncodeWeights, ENCODE); 574 Encode(fst, &encoder);
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
encode.h | 0 // encode.h 17 // Class to encode and decoder an fst. 30 enum EncodeType { ENCODE = 1, DECODE = 2 }; 32 // Identifies stream data as an encode table (and its endianity) 39 // stores both the Tuple of encode labels and weights to a unique 69 // Hash function for EncodeTabe Tuples. Based on the encode flags 108 // Given an arc encode either input/ouptut labels or input/costs or both 109 Label Encode(const A &arc) { 123 // Given an encode arc Label decode back to input/output labels and costs 153 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source [all...] |
equivalent.h | 26 #include "fst/lib/encode.h" 133 EncodeMapper<Arc> mapper(kEncodeWeights|kEncodeLabels, ENCODE);
|
minimize.h | 29 #include "fst/lib/encode.h" 528 encoder(kEncodeLabels | kEncodeWeights, ENCODE); 529 Encode(&gfst, &encoder); 547 EncodeMapper<A> encoder(kEncodeLabels | kEncodeWeights, ENCODE); 548 Encode(fst, &encoder);
|
/frameworks/base/core/java/android/util/ |
Base64.java | 76 * Encode/decode another block of input data. this.output is 446 * Base64-encode the given data and return a newly allocated 449 * @param input the data to encode 456 return new String(encode(input, flags), "US-ASCII"); 464 * Base64-encode the given data and return a newly allocated 467 * @param input the data to encode 470 * @param len the number of bytes of input to encode 477 return new String(encode(input, offset, len, flags), "US-ASCII"); 485 * Base64-encode the given data and return a newly allocated 488 * @param input the data to encode 493 public static byte[] encode(byte[] input, int flags) { method in class:Base64 509 public static byte[] encode(byte[] input, int offset, int len, int flags) { method in class:Base64 [all...] |
/prebuilts/tools/common/mkidentity/ |
mkidentity-prebuilt.jar | |
/external/srec/srec/crec/ |
srec_context.c | [all...] |
/external/openfst/src/test/ |
algo_test.h | 408 EncodeMapper<Arc> encoder(encode_props, ENCODE); 409 Encode(&D, &encoder); 421 EncodeMapper<Arc> encoder(encode_props, ENCODE); [all...] |