Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for 221 (0.02 sec)

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

    	SYS_GETPGID        = 207 // { pid_t sys_getpgid(pid_t pid); }
    	SYS_UTRACE         = 209 // { int sys_utrace(const char *label, const void *addr, size_t len); }
    	SYS_SEMGET         = 221 // { int sys_semget(key_t key, int nsems, int semflg); }
    	SYS_MSGGET         = 225 // { int sys_msgget(key_t key, int msgflg); }
    	SYS_MSGSND         = 226 // { int sys_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/math/big/ratconv_test.go

    	"3142213164987e-294",
    	"46202199371337e-072",
    	"231010996856685e-073",
    	"9324754620109615e+212",
    	"78459735791271921e+049",
    	"272104041512242479e+200",
    	"6802601037806061975e+198",
    	"20505426358836677347e-221",
    	"836168422905420598437e-234",
    	"4891559871276714924261e+222",
    
    	// Table 2: Stress Inputs for Conversion to 53-bit Binary, > 1/2 ULP
    	"9e-265",
    	"85e-037",
    	"623e+100",
    	"3571e+263",
    	"81661e+153",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. src/image/jpeg/scan.go

    							return err
    						}
    					} else {
    						zig := zigStart
    						if zig == 0 {
    							zig++
    							// Decode the DC coefficient, as specified in section F.2.2.1.
    							value, err := d.decodeHuffman(&d.huff[dcTable][scan[i].td])
    							if err != nil {
    								return err
    							}
    							if value > 16 {
    								return UnsupportedError("excessive DC component")
    							}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/math/big/natconv.go

    // repeated nat/Word division.
    //
    // The iterative method processes n Words by n divW() calls, each of which visits every Word in the
    // incrementally shortened q for a total of n + (n-1) + (n-2) ... + 2 + 1, or n(n+1)/2 divW()'s.
    // Recursive conversion divides q by its approximate square root, yielding two parts, each half
    // the size of q. Using the iterative method on both halves means 2 * (n/2)(n/2 + 1)/2 divW()'s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  5. src/image/gif/reader.go

    var interlacing = []interlaceScan{
    	{8, 0}, // Group 1 : Every 8th. row, starting with row 0.
    	{8, 4}, // Group 2 : Every 8th. row, starting with row 4.
    	{4, 2}, // Group 3 : Every 4th. row, starting with row 2.
    	{2, 1}, // Group 4 : Every 2nd. row, starting with row 1.
    }
    
    // uninterlace rearranges the pixels in m to account for interlaced input.
    func uninterlace(m *image.Paletted) {
    	var nPix []uint8
    	dx := m.Bounds().Dx()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_POLL                   = 209 // { int poll(struct pollfd *fds, u_int nfds, int timeout); }
    	SYS___SEMCTL               = 220 // { int __semctl(int semid, int semnum, int cmd, union semun *arg); }
    	SYS_SEMGET                 = 221 // { int semget(key_t key, int nsems, int semflg); }
    	SYS_SEMOP                  = 222 // { int semop(int semid, struct sembuf *sops, u_int nsops); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_REBOOT               = 208 // { int|sys||reboot(int opt, char *bootstr); }
    	SYS_POLL                 = 209 // { int|sys||poll(struct pollfd *fds, u_int nfds, int timeout); }
    	SYS_SEMGET               = 221 // { int|sys||semget(key_t key, int nsems, int semflg); }
    	SYS_SEMOP                = 222 // { int|sys||semop(int semid, struct sembuf *sops, size_t nsops); }
    	SYS_SEMCONFIG            = 223 // { int|sys||semconfig(int flag); }
    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_linux_ppc64x.s

    #define SYS_rt_sigreturn	172
    #define SYS_rt_sigaction	173
    #define SYS_rt_sigprocmask	174
    #define SYS_sigaltstack		185
    #define SYS_madvise		205
    #define SYS_mincore		206
    #define SYS_gettid		207
    #define SYS_futex		221
    #define SYS_sched_getaffinity	223
    #define SYS_exit_group		234
    #define SYS_timer_create	240
    #define SYS_timer_settime	241
    #define SYS_timer_delete	244
    #define SYS_clock_gettime	246
    #define SYS_tgkill		250
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_REBOOT               = 208 // { int|sys||reboot(int opt, char *bootstr); }
    	SYS_POLL                 = 209 // { int|sys||poll(struct pollfd *fds, u_int nfds, int timeout); }
    	SYS_SEMGET               = 221 // { int|sys||semget(key_t key, int nsems, int semflg); }
    	SYS_SEMOP                = 222 // { int|sys||semop(int semid, struct sembuf *sops, size_t nsops); }
    	SYS_SEMCONFIG            = 223 // { int|sys||semconfig(int flag); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_REBOOT               = 208 // { int|sys||reboot(int opt, char *bootstr); }
    	SYS_POLL                 = 209 // { int|sys||poll(struct pollfd *fds, u_int nfds, int timeout); }
    	SYS_SEMGET               = 221 // { int|sys||semget(key_t key, int nsems, int semflg); }
    	SYS_SEMOP                = 222 // { int|sys||semop(int semid, struct sembuf *sops, size_t nsops); }
    	SYS_SEMCONFIG            = 223 // { int|sys||semconfig(int flag); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top