Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for ifeq (0.06 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go

    	Iovlen     uint64
    	Control    *byte
    	Controllen uint64
    	Flags      int32
    	_          [4]byte
    }
    
    type Cmsghdr struct {
    	Len   uint64
    	Level int32
    	Type  int32
    }
    
    type ifreq struct {
    	Ifrn [16]byte
    	Ifru [24]byte
    }
    
    const (
    	SizeofSockaddrNFCLLCP = 0x60
    	SizeofIovec           = 0x10
    	SizeofMsghdr          = 0x38
    	SizeofCmsghdr         = 0x10
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    index 8ba5eae..b620d21 100644
    --- a/sysdeps/unix/sysv/linux/if_index.c
    +++ b/sysdeps/unix/sysv/linux/if_index.c
    @@ -38,12 +38,19 @@ __if_nametoindex (const char *ifname)
       return 0;
     #else
       struct ifreq ifr;
    +  if (strlen (ifname) >= IFNAMSIZ)
    +    {
    +      __set_errno (ENODEV);
    +      return 0;
    +    }
    +
    +  strncpy (ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
    +
       int fd = __opensock ();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (Eq16  x y) => (SEQZ (SUB <x.Type> (ZeroExt16to64 x) (ZeroExt16to64 y)))
    (Eq8   x y) => (SEQZ (SUB <x.Type> (ZeroExt8to64  x) (ZeroExt8to64  y)))
    (Eq(64|32)F ...) => (FEQ(D|S) ...)
    
    (NeqPtr x y) => (Not (EqPtr x y))
    (Neq64  x y) => (Not (Eq64  x y))
    (Neq32  x y) => (Not (Eq32  x y))
    (Neq16  x y) => (Not (Eq16  x y))
    (Neq8   x y) => (Not (Eq8   x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    Label end = new Label();
                    Label notArray = new Label();
                    _ALOAD(2);
                    _INSTANCEOF(OBJECT_ARRAY_TYPE);
                    _IFEQ(notArray);
    
                    // (Object[]) args
                    _ALOAD(2);
                    _CHECKCAST(OBJECT_ARRAY_TYPE);
                    _GOTO(end);
    
                    // new Object[] { args }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    		if p.Scond&rmSuffixBit == 0 {
    			ins.funct3 = uint32(RM_RTZ)
    		} else {
    			ins.funct3 = uint32(p.Scond &^ rmSuffixBit)
    		}
    
    	case AFNES, AFNED:
    		// Replace FNE[SD] with FEQ[SD] and NOT.
    		if p.To.Type != obj.TYPE_REG {
    			p.Ctxt.Diag("%v needs an integer register output", p)
    			return nil
    		}
    		if ins.as == AFNES {
    			ins.as = AFEQS
    		} else {
    			ins.as = AFEQD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. src/regexp/testdata/re2-exhaustive.txt.bz2

    ���X�'��۠�m��$�Iv�"JIזMa����I[mQ�ܒ��m���I[mQ�$�4���$��&I�Qnv�6[m�I$�V�F�rw$�0[s�Ax�]�H��[��L�÷),�Q�@�AI�I�L�#'��I`��`�A.ݤII:�/�1���K��4��d�f[s�Ax�V�F�rI$�(��I$�I�`����l�� ĒI$���(��IFe�;t�%m�iG'rJ3-�۠�I+m�J9$�F�rw$�Q$�0Qnv�6[m�I$�V�F�rw$�2۝� Ē��D���%��[�� Ē�a� �A�%f-�����QĒI$�v�%$��fp��n��$���(��IFe�;t�%m�iG$�HҎN�J$�& -���m��I$�J�hҎN�f[s�Ax�V�F�rw$�2۝� Ē��4��I$iG'rI%L�����l�� ĒI$���(��IF`��n��$����$�[���G�ۼ|��nI$�FےN$��F��L a��%��yM�6ܒqn]v�=������"JHgl�{f�q$�0Ç A � � �8lܞ�H6'�A...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 418.2K bytes
    - Viewed (0)
Back to top