Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 187 for isEnum (0.14 sec)

  1. src/runtime/sys_openbsd_arm64.s

    	SAVE_R19_TO_R28(8*4)
    	SAVE_F8_TO_F15(8*14)
    
    	// If called from an external code context, g will not be set.
    	// Save R0, since runtime·load_g will clobber it.
    	MOVW	R0, 8(RSP)		// signum
    	BL	runtime·load_g(SB)
    
    	// Restore signum to R0.
    	MOVW	8(RSP), R0
    	// R1 and R2 already contain info and ctx, respectively.
    	BL	runtime·sigtrampgo<ABIInternal>(SB)
    
    	// Restore callee-save registers.
    	RESTORE_R19_TO_R28(8*4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    	SYS_GETPPID              = 39  // { pid_t|sys||getppid(void); }
    	SYS_DUP                  = 41  // { int|sys||dup(int fd); }
    	SYS_PIPE                 = 42  // { int|sys||pipe(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_netbsd_arm.go

    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    	SYS_GETPPID              = 39  // { pid_t|sys||getppid(void); }
    	SYS_DUP                  = 41  // { int|sys||dup(int fd); }
    	SYS_PIPE                 = 42  // { int|sys||pipe(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

            BigIntegerMath.SQRT2_PRECOMPUTED_BITS);
      }
    
      public void testIsPowerOfTwo() {
        for (BigInteger x : ALL_BIGINTEGER_CANDIDATES) {
          // Checks for a single bit set.
          boolean expected = x.signum() > 0 & x.and(x.subtract(ONE)).equals(ZERO);
          assertEquals(expected, BigIntegerMath.isPowerOfTwo(x));
        }
      }
    
      public void testLog2ZeroAlwaysThrows() {
        for (RoundingMode mode : ALL_ROUNDING_MODES) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    };
    
    # if !GTEST_OS_WINDOWS
    // Tests that an exit code describes an exit due to termination by a
    // given signal.
    class GTEST_API_ KilledBySignal {
     public:
      explicit KilledBySignal(int signum);
      bool operator()(int exit_status) const;
     private:
      const int signum_;
    };
    # endif  // !GTEST_OS_WINDOWS
    
    // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. src/cmd/internal/buildid/note.go

    // at least 4 kB out, in data.
    func readELF(name string, f *os.File, data []byte) (buildid string, err error) {
    	// Assume the note content is in the data, already read.
    	// Rewrite the ELF header to set shoff and shnum to 0, so that we can pass
    	// the data to elf.NewFile and it will decode the Prog list but not
    	// try to read the section headers and the string table from disk.
    	// That's a waste of I/O when all we care about is the Prog list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    	SYS_GETPPID              = 39  // { pid_t|sys||getppid(void); }
    	SYS_DUP                  = 41  // { int|sys||dup(int fd); }
    	SYS_PIPE                 = 42  // { int|sys||pipe(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. src/runtime/sys_netbsd_amd64.s

    	MOVQ	$SYS_setcontext, AX
    	SYSCALL
    	MOVQ	$-1, DI			// Something failed...
    	MOVL	$SYS_exit, AX
    	SYSCALL
    
    TEXT runtime·sigaction(SB),NOSPLIT,$-8
    	MOVL	sig+0(FP), DI		// arg 1 - signum
    	MOVQ	new+8(FP), SI		// arg 2 - nsa
    	MOVQ	old+16(FP), DX		// arg 3 - osa
    					// arg 4 - tramp
    	LEAQ	sigreturn_tramp<>(SB), R10
    	MOVQ	$2, R8			// arg 5 - vers
    	MOVL	$SYS___sigaction_sigtramp, AX
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    };
    
    # if !GTEST_OS_WINDOWS
    // Tests that an exit code describes an exit due to termination by a
    // given signal.
    class GTEST_API_ KilledBySignal {
     public:
      explicit KilledBySignal(int signum);
      bool operator()(int exit_status) const;
     private:
      const int signum_;
    };
    # endif  // !GTEST_OS_WINDOWS
    
    // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_FCHFLAGS               = 35  // { int fchflags(int fd, u_long flags); }
    	SYS_SYNC                   = 36  // { int sync(void); }
    	SYS_KILL                   = 37  // { int kill(int pid, int signum); }
    	SYS_GETPPID                = 39  // { pid_t getppid(void); }
    	SYS_DUP                    = 41  // { int dup(int fd); }
    	SYS_PIPE                   = 42  // { int pipe(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
Back to top