HomeSort by relevance Sort by last modified time
    Searched defs:Adjustment (Results 1 - 13 of 13) sorted by null

  /frameworks/base/core/java/android/service/notification/
Adjustment.java 31 public final class Adjustment implements Parcelable {
53 * Create a notification adjustment.
59 * @param explanation A human-readable justification for the adjustment.
61 public Adjustment(String pkg, String key, Bundle signals, CharSequence explanation, int user) {
69 protected Adjustment(Parcel in) {
89 public static final Creator<Adjustment> CREATOR = new Creator<Adjustment>() {
91 public Adjustment createFromParcel(Parcel in) {
92 return new Adjustment(in);
96 public Adjustment[] newArray(int size)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 229 static void computeAdjustment(SymbolRef &Sym, llvm::APSInt &Adjustment) {
235 Adjustment = APSIntType(Adjustment).convert(SE->getRHS());
237 // Don't forget to negate the adjustment if it's being subtracted.
241 Adjustment = -Adjustment;
259 // The adjustment is "constant1" in the above expression. It's used to
263 // the subclasses of SimpleConstraintManager to handle the adjustment.
265 llvm::APSInt Adjustment = WraparoundType.getZeroValue();
266 computeAdjustment(Sym, Adjustment);
    [all...]
  /external/llvm/include/llvm/Support/
ARMWinEH.h 81 /// indicate the number of words' of adjustment (1-4), minus 1
83 /// indicates if the prologue combined adjustment into push
85 /// indicates if the epilogue combined adjustment into pop
185 /// prologue has stack adjustment combined into the push
190 /// epilogue has stack adjustment combined into the pop
194 /// StackAdjustment - calculated stack adjustment in words. The stack
195 /// adjustment should be determined via this function to account for the special
198 uint16_t Adjustment = RF.StackAdjust();
199 if (Adjustment >= 0x3f4)
200 return (Adjustment & 0x3) ? ((Adjustment & 0x3) << 2) - 1 : 0
    [all...]
Allocator.h 215 size_t Adjustment = alignmentAdjustment(CurPtr, Alignment);
216 assert(Adjustment + Size >= Size && "Adjustment + Size must not overflow");
219 if (Adjustment + Size <= size_t(End - CurPtr)) {
220 char *AlignedPtr = CurPtr + Adjustment;
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 336 /* adjustment up based on q: this factor ranges from ~1.2 to 2.2. */
339 /* frame separation adjustment ( down) */
585 int Adjustment;
586 /* Make rate adjustment to recover bits spent in key frame
591 Adjustment = (cpi->kf_bitrate_adjustment <= cpi->kf_overspend_bits)
595 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target)) {
596 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
599 cpi->kf_overspend_bits -= Adjustment;
605 cpi->this_frame_target = cpi->per_frame_bandwidth - Adjustment;
614 /* If appropriate make an adjustment to recover bits spent on
    [all...]
onyx_if.c     [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp 288 // No adjustment needed.
311 // No adjustment needed.
828 /// (Used for computing 'this' pointer adjustment thunks.
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 355 // as that will cause the lifetime adjustment to be lost for ARC
452 SubobjectAdjustment &Adjustment = Adjustments[I-1];
453 switch (Adjustment.Kind) {
456 GetAddressOfBaseClass(Object, Adjustment.DerivedToBase.DerivedClass,
457 Adjustment.DerivedToBase.BasePath->path_begin(),
458 Adjustment.DerivedToBase.BasePath->path_end(),
465 LV = EmitLValueForField(LV, Adjustment.Field);
473 llvm::Value *Ptr = EmitScalarExpr(Adjustment.Ptr.RHS);
475 Adjustment.Ptr.MPT);
    [all...]
MicrosoftCXXABI.cpp 560 /// \brief Shared code for virtual base adjustment. Returns the offset from
584 /// \brief Performs a full virtual base adjustment. Used to dereference
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]