/external/v8/src/arm64/ |
code-stubs-arm64.h | 84 minor_key_ = ObjectBits::encode(object.code()) | 85 ValueBits::encode(value.code()) | 86 AddressBits::encode(address.code()) | 87 RememberedSetActionBits::encode(remembered_set_action) | 88 SaveFPRegsModeBits::encode(fp_mode); 344 minor_key_ = LookupModeBits::encode(mode);
|
/external/v8/test/cctest/ |
test-conversions.cc | 323 x = OneBit1::encode(i); 327 x = OneBit2::encode(i); 338 x = EightBit1::encode(i); 341 x = EightBit2::encode(i); 357 CHECK(x == UpperBits::encode(7)); 362 CHECK(x == MiddleBits::encode(3));
|
/external/wpa_supplicant_8/hostapd/ |
wps-ap-nfc.py | 66 if "FAIL" in wpas.request("WPS_NFC_TAG_READ " + str(message).encode("hex")): 106 str(req).encode("hex") + " " + 107 str(sel).encode("hex")) 139 print str(request).encode("hex") 152 print data.encode("hex") 166 print str(sel).encode("hex")
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/ |
vpx_encoder.c | 227 res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts, 231 * Encode multi-levels in reverse order. For example, 232 * if mr_total_resolutions = 3, first encode level 2, 233 * then encode level 1, and finally encode level 0. 241 if ((res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts,
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Choice.java | 74 * return 0; // always encode as ASN1GeneralizedTime 117 * If it is a matter what time format should be used to decode/encode 156 * // encode Date as UTCTime 159 * // otherwise encode Date as GeneralizedTime 167 * // encode Date as UTCTime 170 * // otherwise encode Date as GeneralizedTime
|
/external/protobuf/python/google/protobuf/internal/ |
encoder.py | 244 l = local_len(element.encode('utf-8')) 250 l = local_len(value.encode('utf-8')) 388 """Encode the given integer as a varint and return the bytes. This is only 393 return "".encode("latin1").join(pieces) ##PY25 398 """Encode the given tag and return the bytes. Only called at startup.""" 525 second attempt to encode those values. 532 b = _PY2 and (lambda x:x) or (lambda x:x.encode('latin1')) ##PY25 562 raise ValueError('Can\'t encode floating-point values that are ' 636 false_byte = '\x00'.encode('latin1') ##PY25 637 true_byte = '\x01'.encode('latin1') ##PY2 [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
combined_encode.cpp | 31 /* Purpose : Encode a frame of MPEG4 bitstream in Combined mode. */ 115 if (slice_counter && GOB_Header_Interval && (ind_y % GOB_Header_Interval == 0)) /* Encode GOB Header */ 119 status = EncodeGOBHeader(video, slice_counter, QP, 0); //ind_y /* Encode GOB Header */ 162 /* MB VLC Encode: VLC Encode MB */ 255 /* Purpose : Encode a slice of MPEG4 bitstream in Combined mode and save */ 366 /* Encode GOB Header */ 373 status = EncodeGOBHeader(video, slice_counter, QP, 1); //ind_y /* Encode GOB Header */ 421 else /* don't encode the first MB in packet again */ 431 /* MB VLC Encode: VLC Encode MB * [all...] |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.apache.commons.codec_1.4.0.v201209201156.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
org.apache.commons.codec_1.4.0.v201209201156.jar | |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_unicode.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_unicode.py | [all...] |
/cts/tests/tests/keystore/src/android/keystore/cts/ |
MacTest.java | 343 "Failed for " + algorithm + " with key " + HexEncoding.encode(keyBytes), 479 + ", MAC (" + mac.length + " bytes): " + HexEncoding.encode(mac) 480 + ", actual MAC (" + mac2.length + " bytes): " + HexEncoding.encode(mac2)); 495 + ", MAC (" + mac.length + " bytes): " + HexEncoding.encode(mac)); 513 + ", MAC (" + mac.length + " bytes): " + HexEncoding.encode(mac) 514 + ", actual MAC (" + mac2.length + " bytes): " + HexEncoding.encode(mac2)); 538 + ", MAC (" + mac.length + " bytes): " + HexEncoding.encode(mac) 539 + ", actual MAC (" + mac2.length + " bytes): " + HexEncoding.encode(mac2));
|
/development/tools/etc1tool/ |
etc1tool.cpp | 42 "%s infile [--help | --encode | --encodeNoHeader | --decode] [--showDifference difffile] [-o outfile]\n", 44 fprintf(stderr, "\tDefault is --encode\n"); 47 "\t\t--encode create an ETC1 file from a PNG file.\n"); 310 // Encode the file. 313 int encode(const char* pInput, const char* pOutput, bool bEmitHeader, const char* pDiffFile) { function 477 usage("At most one occurrence of --encode --encodeNoHeader or --decode is allowed.\n"); 510 if (strcmp(pArg, "--encode") == 0) { 575 encode(pInput, pOutput, bEncodeHeader, pDiffFile);
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
Base64.java | 179 * @param binaryData binary data to encode 190 * @param binaryData binary data to encode 232 * @param binaryData Array containing binary data to encode. 504 * @param pObject Object to encode 510 public Object encode(Object pObject) throws EncoderException { method in class:Base64 513 "Parameter supplied to Base64 encode is not a byte[]"); 515 return encode((byte[]) pObject); 525 public byte[] encode(byte[] pArray) { method in class:Base64
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
HexEncoder.java | 49 * encode the input data producing a Hex output stream. 53 public int encode( method in class:HexEncoder
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/ |
cookie.py | 59 # build encode/decode functions to safely pack away values 64 def encode(s, sublist = _encode): function 66 decode = lambda s: encode(s, _decode) 79 secret = secret.encode('utf8') 145 content = content.encode('utf8') 146 timestamp = timestamp.encode('utf8') 304 content.append("%s=%s" % (encode(k), encode(v)))
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
cgitb_catcher.py | 53 response = response.encode('utf8') 78 response = response.encode('utf8')
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/ |
serial_number_generator.py | 65 s = s.encode('utf-8') 69 s = s.encode('utf-8')
|
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/ |
test_httpexceptions.py | 43 assert tstr.encode("utf-8") in b''.join(newapp({'HTTP_ACCEPT': 46 assert tstr.encode("utf-8") in b''.join(newapp({'HTTP_ACCEPT':
|
/external/chromium-trace/trace-viewer/tracing/ |
run_tests | 99 bcolors.ENDC), u'\U0001F631'.encode('utf-8') 103 bcolors.ENDC), u'\U0001F601'.encode('utf-8')
|
/external/clang/test/ARCMT/ |
objcmt-boxing.m | 97 NSStringEncoding encode; 98 s = [NSString stringWithCString:cstr1 encoding:encode];
|
objcmt-boxing.m.result | 97 NSStringEncoding encode; 98 s = [NSString stringWithCString:cstr1 encoding:encode];
|
/external/clang/test/Index/ |
complete-recovery.m | 21 // CHECK-CC1: NotImplemented:{ResultType char[]}{TypedText @encode}{LeftParen (}{Placeholder type-name}{RightParen )} 30 // CHECK-CC2: NotImplemented:{ResultType char[]}{TypedText @encode}{LeftParen (}{Placeholder type-name}{RightParen )}
|
/external/icu/icu4c/source/i18n/ |
bocsu.cpp | 27 * encode one difference value -0x10ffff..+0x10ffff in 1..4 bytes, 82 * Encode the code points of a string as
|
/external/libvorbis/doc/vorbisenc/ |
vorbis_encode_setup_managed.html | 21 encode setup. It functions similarly to the one-step setup performed 23 allows an application to make further encode setup tweaks using <a
|