Home
last modified time | relevance | path

Searched full:excess (Results 1 – 25 of 244) sorted by relevance

12345678910

/freebsd/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk_original.c20 output size plus a specified excess amount (see the EXCESS define
23 the compressed data that fit in the requested plus excess sized
42 EXCESS is chosen to be just greater than the shortfall seen in a
45 header on the second pass. EXCESS is set to be large enough so
123 #define EXCESS 256 /* empirically determined stream overage */ macro
147 blk = malloc(size + EXCESS); in main()
156 def.avail_out = size + EXCESS; in main()
163 if (ret == Z_STREAM_END && def.avail_out >= EXCESS) { in main()
165 have = size + EXCESS - def.avail_out; in main()
186 tmp = malloc(size + EXCESS); in main()
[all …]
H A Dfitblk.c24 output size plus a specified excess amount (see the EXCESS define
27 the compressed data that fit in the requested plus excess sized
46 EXCESS is chosen to be just greater than the shortfall seen in a
49 header on the second pass. EXCESS is set to be large enough so
135 #define EXCESS 256 /* empirically determined stream overage */ macro
162 blk = (unsigned char*)malloc(size + EXCESS); in main()
171 def.avail_out = size + EXCESS; in main()
180 if (ret == Z_STREAM_END && def.avail_out >= EXCESS) { in main()
182 have = size + EXCESS - def.avail_out; in main()
203 tmp = (unsigned char*)malloc(size + EXCESS); in main()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterPressure.cpp144 dbgs() << "[Excess="; in dump()
145 Excess.dump(); in dump()
950 /// Find the max change in excess pressure across all sets.
956 Delta.Excess = PressureChange(); in computeExcessPressureDelta()
977 Delta.Excess = PressureChange(i); in computeExcessPressureDelta()
978 Delta.Excess.setUnitInc(PDiff); in computeExcessPressureDelta()
1129 if (Delta.Excess.isValid()) in getMaxUpwardPressureDelta()
1130 dbgs() << "Excess1 " << TRI->getRegPressureSetName(Delta.Excess.getPSet()) in getMaxUpwardPressureDelta()
1131 << " " << Delta.Excess.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
1138 if (Delta2.Excess.isValid()) in getMaxUpwardPressureDelta()
[all …]
H A DVLIWMachineScheduler.cpp687 ResCount -= (Delta.Excess.getUnitInc() * PriorityOne); in SchedulingCost()
697 (Delta.Excess.getUnitInc() || Delta.CriticalMax.getUnitInc() || in SchedulingCost()
701 dbgs() << "RP " << Delta.Excess.getUnitInc() << "/" in SchedulingCost()
904 // Excess pressure, we can immediately schedule from that Q. in pickNodeBidrectional()
908 // increase pressure for one of the excess PSets, then schedule in that in pickNodeBidrectional()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp378 uint64_t excess = 0; in propagateCounts() member
399 u.excess += e->count; in propagateCounts()
407 u.excess -= e->count; in propagateCounts()
410 uint64_t excess = u.excess; in propagateCounts() local
411 if (static_cast<int64_t>(excess) < 0) in propagateCounts()
412 excess = -excess; in propagateCounts()
414 u.pred->count = excess; in propagateCounts()
419 stack.back().excess += inDst ? -excess : excess; in propagateCounts()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/
H A Ddefaultuserquota_008_pos.ksh54 log_assert "write in excess of any default{user|group}quota size fails"
78 log_pass "write in excess of any default{user|group}quota size failed as expected"
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNRegPressure.cpp116 // SGPR excess pressure conditions in less()
122 // The number of virtual VGPRs required to handle excess SGPR in less()
129 // Unified excess pressure conditions, accounting for VGPRs used for SGPR in less()
139 // Arch VGPR excess pressure conditions, accounting for VGPRs used for SGPR in less()
148 // AGPR excess pressure conditions in less()
165 // The difference in excess VGPR pressure, after including VGPRs used for in less()
185 // If we have a special case where there is a tie in excess VGPR, but one in less()
190 // If both pressures have the same excess pressure before and after in less()
H A DGCNSchedStrategy.h41 /// heuristics to determine excess/critical pressure sets.
78 // Schedule known to have excess register pressure. Be more conservative in
195 // Record regions with excess register pressure over the physical register
309 // Returns true if current region has known excess pressure.
H A DGCNSchedStrategy.cpp234 // when we report excess/critical register pressure, we do it either in initCandidate()
242 // FIXME: We have to enter REG-EXCESS before we reach the actual threshold in initCandidate()
253 Cand.RPDelta.Excess = PressureChange(AMDGPU::RegisterPressureSets::VGPR_32); in initCandidate()
254 Cand.RPDelta.Excess.setUnitInc(NewVGPRPressure - VGPRExcessLimit); in initCandidate()
259 Cand.RPDelta.Excess = PressureChange(AMDGPU::RegisterPressureSets::SReg_32); in initCandidate()
260 Cand.RPDelta.Excess.setUnitInc(NewSGPRPressure - SGPRExcessLimit); in initCandidate()
497 tryPressure(TryCand.RPDelta.Excess, Cand.RPDelta.Excess, TryCand, Cand, in tryCandidate()
956 // spilling (excess register pressure). in initGCNRegion()
1044 // pressure higher than the excess limits which could lead to more spilling. in checkScheduling()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h229 /// Excess records the value of the largest difference in register units beyond
241 PressureChange Excess; member
248 return Excess == RHS.Excess && CriticalMax == RHS.CriticalMax
478 /// excess register units of that pressure set introduced by this instruction.
494 /// excess register units of that pressure set introduced by this instruction.
/freebsd/contrib/wpa/wpa_supplicant/
H A Dwmm_ac.h148 * surplus_bandwidth_allowance - Specifies excess time allocation
158 * surplus_bandwidth_allowance - Specifies excess time allocation
/freebsd/sys/geom/
H A Dgeom_io.c397 off_t excess; in g_io_check() local
456 excess = bp->bio_offset + bp->bio_length; in g_io_check()
457 if (excess > bp->bio_to->mediasize) { in g_io_check()
461 ("excess bio %p too short", bp)); in g_io_check()
462 excess -= bp->bio_to->mediasize; in g_io_check()
463 bp->bio_length -= excess; in g_io_check()
468 if (excess > 0) in g_io_check()
471 bp->bio_to->name, excess); in g_io_check()
/freebsd/usr.bin/clang/llc/
H A Dllc.1143 .B \-\-disable\-excess\-fp\-precision
144 Disable optimizations that may produce excess precision for floating point.
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMachineScheduler.cpp67 tryPressure(TryCand.RPDelta.Excess, Cand.RPDelta.Excess, TryCand, Cand, in tryCandidate()
/freebsd/tools/test/stress2/misc/
H A Dmd5.sh31 # of bio bio_resid after the bio_length was clipped by the 'excess' code
/freebsd/crypto/heimdal/doc/doxyout/krb5/man/man3/
H A Dkrb5_keytab_intro.322 …'s Java based installation. They store a truncted kvno, so when the knvo excess 255, they are trun…
/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsarguments.c312 "Excess arguments - " in AcpiNsCheckAcpiCompliance()
393 "Excess arguments - " in AcpiNsCheckArgumentCount()
425 "Excess arguments - " in AcpiNsCheckArgumentCount()
/freebsd/sys/contrib/openzfs/lib/libtpool/
H A Dthread_pool.c575 int excess; in tpool_resume() local
586 excess = tpool->tp_njobs - tpool->tp_idle; in tpool_resume()
587 while (excess-- > 0 && tpool->tp_current < tpool->tp_maximum) { in tpool_resume()
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/
H A Dadi,ad4080.yaml17 > 90 dBFS) at signal frequencies in excess of 1 MHz enables the AD4080 to
/freebsd/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_parse.y438 excess(const char *fname, size_t lineno, const char *func, const char *comment,
450 warnx("%s, %zu: [%s] Excess %zu bytes%s [%s]",
816 excess(cur_file, line, __func__, " from slave", in compare_streams()
819 /* discard any excess saved output if required */ in compare_streams()
833 * handle excess in file if it exists. Poll in compare_streams()
844 excess(check_file, 0, __func__, "", drain, in compare_streams()
1014 excess(cur_file, line, __func__, " from slave", in do_function_call()
/freebsd/contrib/one-true-awk/testdir/
H A DT.builtin64 print "BAD: T.builtin (excess length args not evaluated)"
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DELF.cpp113 .Case("excess", EM_EXCESS) in convertArchNameToEMachine()
395 return "excess"; in convertEMachineToArchName()
/freebsd/contrib/bmake/mk/
H A Dnewlog.sh311 # make sure excess generations are trimmed
358 # remove excess logs - we rely on mtime!
/freebsd/share/man/man9/
H A Dvn_fullpath.9182 if in excess of it.
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPaddingChecker.cpp106 // There is not enough excess padding to trigger a warning. in visitRecord()
127 // TODO: Recurse into the fields to see if they have excess padding. in visitVariable()

12345678910