Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for clobber (0.11 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    						// pointer in R2. Calls into a Go symbol preserve R2. No call stub is needed.
    					} else {
    						// This caller has a TOC pointer. The callee might clobber it. R2 needs to be saved
    						// and restored.
    						if sym, firstUse := genstub(ctxt, ldr, r, i, s, STUB_TOC); firstUse {
    							stubs = append(stubs, sym)
    						}
    					}
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    		m.mask = 1
    	} else {
    		m.mask = m.mask << 1
    	}
    	m.index++
    }
    
    // clobberdeadPtr is a special value that is used by the compiler to
    // clobber dead stack slots, when -clobberdead flag is set.
    const clobberdeadPtr = uintptr(0xdeaddead | 0xdeaddead<<((^uintptr(0)>>63)*32))
    
    // badPointer throws bad pointer in heap panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

                  // Mimic
                  // "if (!map.containsKey(key)) ...
                  // else return map.get(key);
                  return entryValue;
                } else {
                  // clobber existing entry, count remains unchanged
                  ++modCount;
                  setValue(e, value);
                  return entryValue;
                }
              }
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

                  // Mimic
                  // "if (!map.containsKey(key)) ...
                  // else return map.get(key);
                  return entryValue;
                } else {
                  // clobber existing entry, count remains unchanged
                  ++modCount;
                  setValue(e, value);
                  return entryValue;
                }
              }
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    		// On Linux, in a cgo binary we may get a SIGSETXID signal early on
    		// before the signal stack is set, as glibc doesn't allow us to block
    		// SIGSETXID. So a signal may land on the current stack and clobber
    		// the content below the SP. We store the LR again after the SP is
    		// decremented.
    		prologue = obj.Appendp(prologue, newprog)
    		prologue.As = AMOV
    		prologue.From = obj.Addr{Type: obj.TYPE_REG, Reg: REG_LR}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller.go

    		}
    
    		// Update Capacity if the claim is becoming Bound, not if it was already.
    		// A discrepancy can be intentional to mean that the PVC filesystem size
    		// doesn't match the PV block device size, so don't clobber it
    		if claim.Status.Phase != phase {
    			volumeCap, ok := volume.Spec.Capacity[v1.ResourceStorage]
    			if !ok {
    				return nil, fmt.Errorf("PersistentVolume %q is without a storage capacity", volume.Name)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                    new ClosingCallable<TestCloseable>() {
                      @Override
                      public TestCloseable call(DeferredCloser closer) throws Exception {
                        closer.eventuallyClose(closeable1, closingExecutor);
                        closer.eventuallyClose(closeable2, closingExecutor);
                        return closeable3;
                      }
                    },
                    executor)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                    new ClosingCallable<TestCloseable>() {
                      @Override
                      public TestCloseable call(DeferredCloser closer) throws Exception {
                        closer.eventuallyClose(closeable1, closingExecutor);
                        closer.eventuallyClose(closeable2, closingExecutor);
                        return closeable3;
                      }
                    },
                    executor)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/mips/asm0.go

    }
    
    // isUnsafePoint returns whether p is an unsafe point.
    func (c *ctxt0) isUnsafePoint(p *obj.Prog) bool {
    	// If p explicitly uses REGTMP, it's unsafe to preempt, because the
    	// preemption sequence clobbers REGTMP.
    	return p.From.Reg == REGTMP || p.To.Reg == REGTMP || p.Reg == REGTMP
    }
    
    // isRestartable returns whether p is a multi-instruction sequence that,
    // if preempted, can be restarted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }
    
        /**
         * Assuming that both this [FirScope] and [another] are [FirNestedClassifierScope] or [FirClassUseSiteMemberScope] and both of them
         * are surrounding [from], returns whether this [FirScope] is closer than [another] based on the distance from [from].
         *
         * If one of this [FirScope] and [another] is not [FirNestedClassifierScope] or [FirClassUseSiteMemberScope], it returns false.
         *
         * Example:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top