HomeSort by relevance Sort by last modified time
    Searched refs:MX (Results 1 - 25 of 45) sorted by null

1 2

  /external/llvm/lib/Target/Hexagon/
HexagonGenMux.cpp 293 MuxInfo &MX = ML[I];
294 MachineBasicBlock &B = *MX.At->getParent();
295 DebugLoc DL = MX.At->getDebugLoc();
296 unsigned MxOpc = getMuxOpcode(*MX.SrcT, *MX.SrcF);
299 BuildMI(B, MX.At, DL, HII->get(MxOpc), MX.DefR)
300 .addReg(MX.PredR)
301 .addOperand(*MX.SrcT)
302 .addOperand(*MX.SrcF)
    [all...]
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
RegionCode.java 49 static final String MX = "MX";
PhoneNumberMatcherTest.java 170 doTestFindInContext("+52 (449)978-0001", RegionCode.MX);
171 doTestFindInContext("01 (449)978-0001", RegionCode.MX);
172 doTestFindInContext("(449)978-0001", RegionCode.MX);
175 doTestFindInContext("+52 1 33 1234-5678", RegionCode.MX);
176 doTestFindInContext("044 (33) 1234-5678", RegionCode.MX);
177 doTestFindInContext("045 33 1234-5678", RegionCode.MX);
531 new NumberTest("01 (33) 3461 2234", RegionCode.MX), // Optional NP present
532 new NumberTest("(33) 3461 2234", RegionCode.MX), // Optional NP omitted
    [all...]
PhoneNumberUtilTest.java 314 RegionCode.MX)));
    [all...]
  /prebuilts/go/darwin-x86/src/net/
lookup_windows_test.go 31 mx, err := LookupMX(server)
36 if len(mx) == 0 {
45 sort.Sort(byPrefAndHost(mx))
46 if !reflect.DeepEqual(expected, mx) {
47 t.Errorf("different results %s:\texp:%v\tgot:%v", server, toJson(expected), toJson(mx))
127 type byPrefAndHost []*MX
162 func nslookupMX(name string) (mx []*MX, err error) {
164 if r, err = nslookup("mx", name); err != nil {
167 mx = make([]*MX, 0, 10
    [all...]
dnsclient.go 248 // An MX represents a single DNS MX record.
249 type MX struct {
254 // byPref implements sort.Interface to sort MX records by preference
255 type byPref []*MX
261 // sort reorders MX records as specified in RFC 5321.
lookup_unix.go 124 func (*Resolver) lookupMX(ctx context.Context, name string) ([]*MX, error) {
129 mxs := make([]*MX, len(rrs))
132 mxs[i] = &MX{Host: rr.Mx, Pref: rr.Pref}
lookup_nacl.go 38 func (*Resolver) lookupMX(ctx context.Context, name string) (mxs []*MX, err error) {
lookup_windows.go 229 func (*Resolver) lookupMX(ctx context.Context, name string) ([]*MX, error) {
240 mxs := make([]*MX, 0, 10)
243 mxs = append(mxs, &MX{absDomainName([]byte(syscall.UTF16ToString((*[256]uint16)(unsafe.Pointer(v.NameExchange))[:]))), v.Preference})
lookup.go 290 // LookupMX returns the DNS MX records for the given domain name sorted by preference.
291 func LookupMX(name string) ([]*MX, error) {
295 // LookupMX returns the DNS MX records for the given domain name sorted by preference.
296 func (r *Resolver) LookupMX(ctx context.Context, name string) ([]*MX, error) {
lookup_plan9.go 244 func (*Resolver) lookupMX(ctx context.Context, name string) (mx []*MX, err error) {
245 lines, err := queryDNS(ctx, name, "mx")
255 mx = append(mx, &MX{absDomainName([]byte(f[3])), uint16(pref)})
258 byPref(mx).sort()
  /prebuilts/go/linux-x86/src/net/
lookup_windows_test.go 31 mx, err := LookupMX(server)
36 if len(mx) == 0 {
45 sort.Sort(byPrefAndHost(mx))
46 if !reflect.DeepEqual(expected, mx) {
47 t.Errorf("different results %s:\texp:%v\tgot:%v", server, toJson(expected), toJson(mx))
127 type byPrefAndHost []*MX
162 func nslookupMX(name string) (mx []*MX, err error) {
164 if r, err = nslookup("mx", name); err != nil {
167 mx = make([]*MX, 0, 10
    [all...]
dnsclient.go 248 // An MX represents a single DNS MX record.
249 type MX struct {
254 // byPref implements sort.Interface to sort MX records by preference
255 type byPref []*MX
261 // sort reorders MX records as specified in RFC 5321.
lookup_unix.go 124 func (*Resolver) lookupMX(ctx context.Context, name string) ([]*MX, error) {
129 mxs := make([]*MX, len(rrs))
132 mxs[i] = &MX{Host: rr.Mx, Pref: rr.Pref}
lookup_nacl.go 38 func (*Resolver) lookupMX(ctx context.Context, name string) (mxs []*MX, err error) {
lookup_windows.go 229 func (*Resolver) lookupMX(ctx context.Context, name string) ([]*MX, error) {
240 mxs := make([]*MX, 0, 10)
243 mxs = append(mxs, &MX{absDomainName([]byte(syscall.UTF16ToString((*[256]uint16)(unsafe.Pointer(v.NameExchange))[:]))), v.Preference})
lookup.go 290 // LookupMX returns the DNS MX records for the given domain name sorted by preference.
291 func LookupMX(name string) ([]*MX, error) {
295 // LookupMX returns the DNS MX records for the given domain name sorted by preference.
296 func (r *Resolver) LookupMX(ctx context.Context, name string) ([]*MX, error) {
lookup_plan9.go 244 func (*Resolver) lookupMX(ctx context.Context, name string) (mx []*MX, err error) {
245 lines, err := queryDNS(ctx, name, "mx")
255 mx = append(mx, &MX{absDomainName([]byte(f[3])), uint16(pref)})
258 byPref(mx).sort()
  /toolchain/binutils/binutils-2.25/opcodes/
i386-dis.c 254 #define Mx { OP_M, x_mode }
349 #define MX { OP_MMX, 0 }
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h 474 DenseMatrix MX(m, nbrEig);
479 MX.col(j) = precond.solve(tv1);
482 //Update m_T = [U'MU U'MX; X'MU X'MX]
483 m_T.block(m_r, m_r, nbrEig, nbrEig) = X.transpose() * MX;
486 m_T.block(0, m_r, m_r, nbrEig) = m_U.leftCols(m_r).transpose() * MX;
492 for (int j = 0; j < nbrEig; j++) m_MU.col(m_r+j) = MX.col(j);
  /external/cblas/testing/
c_dblat1.f 248 INTEGER I, J, KI, KN, KSIZE, LENX, LENY, MX, MY
343 MX = ABS(INCX)
349 LENX = LENS(KN,MX)
403 INTEGER I, K, KI, KN, KSIZE, LENX, LENY, MX, MY
476 MX = ABS(INCX)
482 LENX = LENS(KN,MX)
c_sblat1.f 248 INTEGER I, J, KI, KN, KSIZE, LENX, LENY, MX, MY
343 MX = ABS(INCX)
349 LENX = LENS(KN,MX)
403 INTEGER I, K, KI, KN, KSIZE, LENX, LENY, MX, MY
476 MX = ABS(INCX)
482 LENX = LENS(KN,MX)
  /external/eigen/blas/testing/
dblat1.f 348 $ MX, MY
598 MX = ABS(INCX)
604 LENX = LENS(KN,MX)
691 INTEGER I, K, KI, KN, KSIZE, LENX, LENY, MX, MY
    [all...]
sblat1.f 348 $ MX, MY
602 MX = ABS(INCX)
608 LENX = LENS(KN,MX)
695 INTEGER I, K, KI, KN, KSIZE, LENX, LENY, MX, MY
    [all...]
  /external/selinux/mcstrans/share/examples/nato/setrans.d/
eyes-only.conf 462 ~c341=MX # Mexico

Completed in 547 milliseconds

1 2