Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for validVal (0.09 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    	((ADD|SUB|AND|OR|XOR)Lmodify [off1+off2] {sym} base val mem)
    
    // Fold constants into stores.
    (MOVQstore [off] {sym} ptr (MOVQconst [c]) mem) && validVal(c) =>
    	(MOVQstoreconst [makeValAndOff(int32(c),off)] {sym} ptr mem)
    (MOVLstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
    	(MOVLstoreconst [makeValAndOff(int32(c),off)] {sym} ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. cmd/xl-storage_test.go

    		t.Fatalf("Unable to create file, %s", err)
    	}
    
    	testCases := []struct {
    		volName     string
    		expectedErr error
    	}{
    		// TestXLStorage case  - 1.
    		// A valida case. Empty vol, should be possible to delete.
    		{
    			volName:     "success-vol",
    			expectedErr: nil,
    		},
    		// TestXLStorage case - 2.
    		// volume is non-existent.
    		{
    			volName:     "nonexistent-vol",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
Back to top