HomeSort by relevance Sort by last modified time
    Searched refs:xn (Results 51 - 75 of 99) sorted by null

1 23 4

  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
voAMRWBEnc.c 186 Word16 xn[L_SUBFR]; /* Target vector for pitch search */ local
771 Residu_opt(Ap, error + M, xn, L_SUBFR);
773 Residu(Ap, error + M, xn, L_SUBFR);
775 Deemph2(xn, TILT_FAC, L_SUBFR, &(st->mem_w0));
780 /* first half: xn[] --> cn[] */
782 Copy(xn, code + M, L_SUBFR / 2);
828 * scale xn[] and h1[] to avoid overflow in dot_product12() *
832 Scale_sig_opt(xn, L_SUBFR, shift); /* scaling of xn[] to limit dynamic at 12 bits */
836 Scale_sig(xn, L_SUBFR, shift); /* scaling of xn[] to limit dynamic at 12 bits *
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/cookiejar/
punycode.go 130 const acePrefix = "xn--"
133 // toASCII("bücher.example.com") is "xn--bcher-kva.example.com", and
  /prebuilts/go/linux-x86/src/net/http/cookiejar/
punycode.go 130 const acePrefix = "xn--"
133 // toASCII("bücher.example.com") is "xn--bcher-kva.example.com", and
  /libcore/ojluni/src/main/native/
Net.c 831 const char *xn; local
837 xn = JNU_JAVANETPKG "ProtocolException";
841 xn = JNU_JAVANETPKG "ConnectException";
844 xn = JNU_JAVANETPKG "ConnectException";
847 xn = JNU_JAVANETPKG "NoRouteToHostException";
851 xn = JNU_JAVANETPKG "BindException";
854 xn = defaultException;
858 JNU_ThrowByNameWithLastError(env, xn, "NioSocketError");
  /external/boringssl/src/crypto/x509/
x509_lu.c 621 X509_NAME *xn; local
625 xn = X509_get_issuer_name(x);
626 if (!X509_STORE_get_by_subject(ctx, X509_LU_X509, xn, &obj))
638 idx = X509_OBJECT_idx_by_subject(ctx->ctx->objs, X509_LU_X509, xn);
647 if (X509_NAME_cmp(xn, X509_get_subject_name(pobj->data.x509)))
  /prebuilts/go/darwin-x86/src/math/big/
arith.go 299 func divWVW_g(z []Word, xn Word, x []Word, y Word) (r Word) {
300 r = xn
arith_test.go 308 type funWVW func(z []Word, xn Word, x []Word, y Word) (r Word)
311 xn Word
319 r := f(z, a.xn, a.x, a.y)
arith_386.s 254 // func divWVW(z* Word, xn Word, x []Word, y Word) (r Word)
257 MOVL xn+12(FP), DX // r = xn
arith_amd64.s 435 // func divWVW(z []Word, xn Word, x []Word, y Word) (r Word)
438 MOVQ xn+24(FP), DX // r = xn
  /prebuilts/go/linux-x86/src/math/big/
arith.go 299 func divWVW_g(z []Word, xn Word, x []Word, y Word) (r Word) {
300 r = xn
arith_test.go 308 type funWVW func(z []Word, xn Word, x []Word, y Word) (r Word)
311 xn Word
319 r := f(z, a.xn, a.x, a.y)
arith_386.s 254 // func divWVW(z* Word, xn Word, x []Word, y Word) (r Word)
257 MOVL xn+12(FP), DX // r = xn
  /external/v8/src/arm64/
macro-assembler-arm64-inl.h 391 void MacroAssembler::Blr(const Register& xn) {
393 DCHECK(!xn.IsZero());
394 blr(xn);
398 void MacroAssembler::Br(const Register& xn) {
400 DCHECK(!xn.IsZero());
401 br(xn);
1014 void MacroAssembler::Ret(const Register& xn) {
1016 DCHECK(!xn.IsZero());
1017 ret(xn);
    [all...]
assembler-arm64.cc 977 void Assembler::br(const Register& xn) {
978 DCHECK(xn.Is64Bits());
979 Emit(BR | Rn(xn));
983 void Assembler::blr(const Register& xn) {
984 DCHECK(xn.Is64Bits());
987 DCHECK(!xn.Is(xzr));
988 Emit(BLR | Rn(xn));
992 void Assembler::ret(const Register& xn) {
993 DCHECK(xn.Is64Bits());
994 Emit(RET | Rn(xn));
    [all...]
macro-assembler-arm64.h 361 inline void Blr(const Register& xn);
362 inline void Br(const Register& xn);
506 inline void Ret(const Register& xn = lr);
    [all...]
  /external/vixl/src/aarch64/
macro-assembler-aarch64.h     [all...]
assembler-aarch64.cc 180 void Assembler::br(const Register& xn) {
181 VIXL_ASSERT(xn.Is64Bits());
182 Emit(BR | Rn(xn));
186 void Assembler::blr(const Register& xn) {
187 VIXL_ASSERT(xn.Is64Bits());
188 Emit(BLR | Rn(xn));
192 void Assembler::ret(const Register& xn) {
193 VIXL_ASSERT(xn.Is64Bits());
194 Emit(RET | Rn(xn));
891 const Register& xn,
    [all...]
  /toolchain/binutils/binutils-2.25/ld/
genscripts.sh 59 # sun3.xn [used when the linker is invoked with "-n"]
272 # A .xn script is for linking with -n flag (mix text and data on same page).
332 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xn
  /prebuilts/go/darwin-x86/test/chan/
powser1.go 272 xn := float64(1)
281 xn = xn*x
powser2.go 282 xn := float64(1)
291 xn = xn*x
  /prebuilts/go/linux-x86/test/chan/
powser1.go 272 xn := float64(1)
281 xn = xn*x
powser2.go 282 xn := float64(1)
291 xn = xn*x
  /external/svox/pico/lib/
picocep.c 196 picoos_int32 xi[5], x1[2], x2[3], xm[3], xn[2]; member in struct:cep_subobj
841 cep->xn[0] = 1;
842 cep->xn[1] = 2;
    [all...]
  /external/ipsec-tools/src/racoon/
ipsec_doi.c 4011 X509_NAME *xn; local
4562 X509_NAME *xn = NULL; local
    [all...]
  /external/boringssl/src/include/openssl/
x509.h 680 OPENSSL_EXPORT X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn);
687 OPENSSL_EXPORT X509_NAME *X509_NAME_dup(X509_NAME *xn);
742 OPENSSL_EXPORT int X509_NAME_set(X509_NAME **xn, X509_NAME *name);
    [all...]

Completed in 347 milliseconds

1 23 4