Home
last modified time | relevance | path

Searched refs:checkpoint (Results 1 - 19 of 19) sorted by relevance

/third_party/vixl/src/
H A Dpool-manager-impl.h63 // the alignment into account, which only makes the checkpoint calculations in Emit()
116 // Recalculate the checkpoint before emitting the footer. The footer might in Emit()
162 T PoolManager<T>::UpdateCheckpointForObject(T checkpoint, in UpdateCheckpointForObject() argument
164 checkpoint -= object->label_base_->GetPoolObjectSizeInBytes(); in UpdateCheckpointForObject()
165 if (checkpoint > object->max_location_) checkpoint = object->max_location_; in UpdateCheckpointForObject()
166 checkpoint = AlignDown(checkpoint, object->alignment_); in UpdateCheckpointForObject()
167 return checkpoint; in UpdateCheckpointForObject()
176 static inline bool CheckCurrentPC(T pc, T checkpoint) { in CheckCurrentPC() argument
183 CheckFuturePC(T pc, T checkpoint) CheckFuturePC() argument
318 T checkpoint = MaxCheckpoint<T>(); RecalculateCheckpoint() local
[all...]
H A Dpool-manager.h481 // Helper function for calculating the checkpoint.
492 // Helper function used in the checkpoint calculation. 'checkpoint' is the
493 // current checkpoint, which is modified to take 'object' into account. The
494 // new checkpoint is returned.
495 static T UpdateCheckpointForObject(T checkpoint, const PoolObject<T>* object);
559 // The current checkpoint. This is the latest location at which the pool
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/
H A Dsigstore_rekor.js37 return { logIndex: "0", rootHash: Buffer.alloc(0), treeSize: "0", hashes: [], checkpoint: undefined };
46 checkpoint: isSet(object.checkpoint) ? exports.Checkpoint.fromJSON(object.checkpoint) : undefined,
61 message.checkpoint !== undefined &&
62 (obj.checkpoint = message.checkpoint ? exports.Checkpoint.toJSON(message.checkpoint) : undefined);
/third_party/node/deps/v8/src/compiler/
H A Dcheckpoint-elimination.cc5 #include "src/compiler/checkpoint-elimination.h"
19 FrameStateFunctionInfo const* GetFunctionInfo(Node* checkpoint) { in GetFunctionInfo() argument
20 DCHECK_EQ(IrOpcode::kCheckpoint, checkpoint->opcode()); in GetFunctionInfo()
21 Node* frame_state = NodeProperties::GetFrameStateInput(checkpoint); in GetFunctionInfo()
27 // The given checkpoint is redundant if it is effect-wise dominated by another
28 // checkpoint of the same origin (*) and there is no observable write in
32 // the identity of the checkpoint's FrameStateFunctionInfo pointer. This
H A Djs-inlining-heuristic.cc444 // +----+ Checkpoint(checkpoint) | in TryReuseDispatch()
460 // control that comes into {merge}. There can be a {checkpoint} between in TryReuseDispatch()
513 // If there is a non-checkpoint effect node between the callee computation in TryReuseDispatch()
514 // and the call, bail out. We will drop any checkpoint between the call and in TryReuseDispatch()
516 // checkpoint that the call can fall back to. in TryReuseDispatch()
517 Node* checkpoint = nullptr; in TryReuseDispatch()
520 checkpoint = effect; in TryReuseDispatch()
521 if (NodeProperties::GetControlInput(checkpoint) != merge) return false; in TryReuseDispatch()
528 // The effect phi, the callee, the call and the checkpoint must be the only in TryReuseDispatch()
532 merge_use != checkpoint) { in TryReuseDispatch()
[all...]
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/timestamp/
H A Dcheckpoint.js22 // Separator between the note and the signatures in a checkpoint
32 // Verifies the checkpoint value in the given tlog entry. There are two steps
34 // 1. Verify that all signatures in the checkpoint can be verified against a
36 // 2. Verify that the root hash in the checkpoint matches the root hash in the
46 const signedNote = SignedNote.fromString(inclusionProof.checkpoint.envelope);
47 const checkpoint = LogCheckpoint.fromString(signedNote.note);
48 // Verify that the signatures in the checkpoint are all valid
52 message: 'invalid checkpoint signature',
55 // Verify that the root hash from the checkpoint matches the root hash in the
57 if (!core_1.crypto.bufferEqual(checkpoint
[all...]
/third_party/skia/src/sksl/
H A DSkSLLexer.h137 void rewindToCheckpoint(Checkpoint checkpoint) { in rewindToCheckpoint() argument
138 fOffset = checkpoint.fOffset; in rewindToCheckpoint()
139 fLine = checkpoint.fLine; in rewindToCheckpoint()
H A DSkSLDSLParser.cpp538 Checkpoint checkpoint(this); in varDeclarationsOrExpressionStatement()
541 checkpoint.accept(); in varDeclarationsOrExpressionStatement()
548 checkpoint.rewind(); in varDeclarationsOrExpressionStatement()
/third_party/eudev/src/collect/
H A Dcollect.c4 * usage: collect [--add|--remove] <checkpoint> <id> <idlist>
6 * Adds ID <id> to the list governed by <checkpoint>.
75 printf("%s [options] <checkpoint> <id> <idlist>\n\n" in usage()
81 " Adds ID <id> to the list governed by <checkpoint>.\n" in usage()
128 * Read checkpoint file
366 char *checkpoint, *us; in main() local
411 checkpoint = argv[argi++]; in main()
423 fprintf(stderr, "Using checkpoint '%s'\n", checkpoint); in main()
426 fd = prepare(tmpdir, checkpoint); in main()
[all...]
/third_party/node/deps/npm/node_modules/@sigstore/sign/dist/witness/tlog/
H A Dindex.js78 checkpoint: {
79 envelope: proof.checkpoint,
/third_party/node/deps/npm/node_modules/@sigstore/bundle/dist/
H A Dvalidate.js183 if (entry.inclusionProof.checkpoint === undefined) {
184 invalidValues.push(`verificationMaterial.tlogEntries[${i}].inclusionProof.checkpoint`);
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-ir.h335 CheckpointedInterpreterState checkpoint);
347 CheckpointedInterpreterState checkpoint) in EagerDeoptInfo()
348 : DeoptInfo(zone, compilation_unit, checkpoint) {} in EagerDeoptInfo()
354 CheckpointedInterpreterState checkpoint) in LazyDeoptInfo()
355 : DeoptInfo(zone, compilation_unit, checkpoint) {} in LazyDeoptInfo()
417 CheckpointedInterpreterState checkpoint, Args&&... args) { in New()
421 EagerDeoptInfo(zone, compilation_unit, checkpoint); in New()
425 LazyDeoptInfo(zone, compilation_unit, checkpoint); in New()
346 EagerDeoptInfo(Zone* zone, const MaglevCompilationUnit& compilation_unit, CheckpointedInterpreterState checkpoint) EagerDeoptInfo() argument
353 LazyDeoptInfo(Zone* zone, const MaglevCompilationUnit& compilation_unit, CheckpointedInterpreterState checkpoint) LazyDeoptInfo() argument
416 New(Zone* zone, const MaglevCompilationUnit& compilation_unit, CheckpointedInterpreterState checkpoint, Args&&... args) New() argument
/third_party/musl/src/malloc/liteos_a/user_debug/
H A Dmemory_check.c269 static int get_backtrace_info(void **buffer, int nptr, int fd, bool verbose, bool checkpoint) in get_backtrace_info() argument
285 if (checkpoint && !checkpoint_head) { in get_backtrace_info()
313 if (checkpoint) { in get_backtrace_info()
/third_party/musl/porting/liteos_a/user_debug/src/malloc/
H A Dmemory_check.c254 static int get_backtrace_info(void **buffer, int nptr, int fd, bool verbose, bool checkpoint) in get_backtrace_info() argument
270 if (checkpoint && !checkpoint_head) { in get_backtrace_info()
298 if (checkpoint) { in get_backtrace_info()
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc521 // checkpoint in the stack during dependency building.
530 // checkpoint.
533 // Mark the last checkpoint as having cleared successfully, removing it from
537 // checkpoint won't be rolled back: if a checkpoint gets rolled back,
542 // Roll back the Tables to the state of the checkpoint at the top of the
756 // we are going to roll back to the last checkpoint.
856 const CheckPoint& checkpoint = checkpoints_.back(); in RollbackToLastCheckpoint() local
858 for (int i = checkpoint.pending_symbols_before_checkpoint; in RollbackToLastCheckpoint()
862 for (int i = checkpoint in RollbackToLastCheckpoint()
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c7099 static void checkpoint(upb_pbdecoder *d) { in checkpoint() function
7101 * We are trying to ensure that we don't checkpoint() more often than in checkpoint()
7103 UPB_ASSERT(d->checkpoint != d->ptr); in checkpoint()
7104 d->checkpoint = d->ptr; in checkpoint()
7181 d->checkpoint = d->ptr; in upb_pbdecoder_resume()
7188 checkpoint(d); in upb_pbdecoder_resume()
7194 checkpoint(d); in upb_pbdecoder_resume()
7200 /* Suspends the decoder at the last checkpoint, without saving any residual
7204 if (d->checkpoint == d->residual) { in upb_pbdecoder_suspend()
7209 size_t ret = d->size_param - (d->end - d->checkpoint); in upb_pbdecoder_suspend()
[all...]
H A Dupb.h6122 const char *buf, *ptr, *end, *checkpoint; member
/third_party/vixl/src/aarch64/
H A Dmacro-assembler-aarch64.cc43 void Pool::SetNextCheckpoint(ptrdiff_t checkpoint) { in SetNextCheckpoint() argument
44 masm_->checkpoint_ = std::min(masm_->checkpoint_, checkpoint); in SetNextCheckpoint()
45 checkpoint_ = checkpoint; in SetNextCheckpoint()
H A Dmacro-assembler-aarch64.h90 void SetNextCheckpoint(ptrdiff_t checkpoint);
92 VIXL_DEPRECATED("GetCheckpoint", ptrdiff_t checkpoint() const) {
163 // offset before which a check *must* occur. This recommended checkpoint
166 // checkpoint is reached.

Completed in 71 milliseconds