Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 200 for remainders (0.22 sec)

  1. src/net/fd_fake.go

    	// sock_accept on a pre-opened socket, and then fd_read, fd_write,
    	// fd_close, and sock_shutdown on the resulting connection. We
    	// intercept applicable netFD calls on this instance, and then pass
    	// the remainder of the netFD calls to fakeNetFD.
    	*fakeNetFD
    }
    
    func newFD(net string, sysfd int) *netFD {
    	return newPollFD(net, poll.FD{
    		Sysfd:         sysfd,
    		IsStream:      true,
    		ZeroReadIsEOF: true,
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s

    	SLD $3, R22
    
    	// Shift to get only the bytes in msg
    	SRD R22, R17, R17
    
    	// Put 1 at high end
    	MOVD $1, R23
    	SLD  $3, R21
    	SLD  R21, R23, R23
    	OR   R23, R17, R17
    
    	// Remainder is 8
    	MOVD $8, R5
    
    just1:
    	CMP R5, $8
    	BLT less8
    
    	// Exactly 8
    	MOVD (R4), R16
    
    	CMP R17, $0
    
    	// Check if we've already set R17; if not
    	// set 1 to indicate end of msg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/math/all_test.go

    }
    
    func TestRemainder(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		if f := Remainder(10, vf[i]); remainder[i] != f {
    			t.Errorf("Remainder(10, %g) = %g, want %g", vf[i], f, remainder[i])
    		}
    	}
    	for i := 0; i < len(vffmodSC); i++ {
    		if f := Remainder(vffmodSC[i][0], vffmodSC[i][1]); !alike(fmodSC[i], f) {
    			t.Errorf("Remainder(%g, %g) = %g, want %g", vffmodSC[i][0], vffmodSC[i][1], f, fmodSC[i])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  4. src/compress/gzip/example_test.go

    		}
    
    		// Just output the data for the example.
    		if _, err := io.Copy(os.Stdout, zr); err != nil {
    			log.Fatal(err)
    		}
    	})
    	ts := httptest.NewServer(handler)
    	defer ts.Close()
    
    	// The remainder is the example code.
    
    	// The data we want to compress, as an io.Reader
    	dataReader := strings.NewReader(testdata)
    
    	// bodyReader is the body of the HTTP request, as an io.Reader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 16:24:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. src/internal/bytealg/compare_amd64.s

    diff32_avx2:
    	VZEROUPPER
    	JMP diff16
    
    	// Same as diff32_avx2, but for last 32 bytes.
    diff64_avx2:
    	VZEROUPPER
    	JMP diff48
    
    	// For <64 bytes remainder jump to normal loop.
    big_loop_avx2_exit:
    	VZEROUPPER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/MultipartReader.kt

        )
    
        @Throws(IOException::class)
        fun nextPart(): Part? {
          check(!closed) { "closed" }
    
          if (noMoreParts) return null
    
          // Read a boundary, skipping the remainder of the preceding part as necessary.
          if (partCount == 0 && source.rangeEquals(0L, dashDashBoundary)) {
            // This is the first part. Consume "--" followed by the boundary.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

                if (!matcher.matches()) {
                    matcher = tooManyProblemsPattern.matcher(summary.first)
                    if (matcher.matches()) {
                        def remainder = matcher.group(1).toInteger()
                        if (i + remainder == expectedUniqueProblems) {
                            break
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/hash/crc64/crc64.go

    				helperTable[4][(crc>>24)&0xff] ^
    				helperTable[3][(crc>>32)&0xff] ^
    				helperTable[2][(crc>>40)&0xff] ^
    				helperTable[1][(crc>>48)&0xff] ^
    				helperTable[0][crc>>56]
    			p = p[8:]
    		}
    	}
    	// For reminders or small sizes
    	for _, v := range p {
    		crc = tab[byte(crc)^v] ^ (crc >> 8)
    	}
    	return ^crc
    }
    
    // Update returns the result of adding the bytes in p to the crc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/AbstractStreamingHasher.java

        // Now process directly from the rest of the input buffer
        while (readBuffer.remaining() >= chunkSize) {
          process(readBuffer);
        }
    
        // Finally stick the remainder back in our usual buffer
        buffer.put(readBuffer);
        return this;
      }
    
      /*
       * Note: hashString(CharSequence, Charset) is intentionally not overridden.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/AbstractStreamingHasher.java

        // Now process directly from the rest of the input buffer
        while (readBuffer.remaining() >= chunkSize) {
          process(readBuffer);
        }
    
        // Finally stick the remainder back in our usual buffer
        buffer.put(readBuffer);
        return this;
      }
    
      /*
       * Note: hashString(CharSequence, Charset) is intentionally not overridden.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top