HomeSort by: relevance | last modified time | path
    Searched refs:Checked (Results 1 - 14 of 14) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
checkedint.d 13 Issuing individual checked operations is flexible and efficient but often
14 tedious. The $(LREF Checked) facility offers encapsulated integral wrappers that
16 results. For example, `Checked!int` is a type that behaves like `int` but aborts
19 checked) uses type deduction to convert a value `x` of integral type `T` to
20 `Checked!T` by means of `checked(x)`. For example:
26 writeln((checked(5) + 7).get); // 12
27 writeln((checked(10) * 1000 * 1000 * 1000).get); // Overflow
31 Similarly, $(D checked(-1) > uint(0)) aborts execution (even though the built-in
33 conversion rules modeled after C). Thus, `Checked!int` is a virtually drop-i
    [all...]
  /src/external/bsd/wpa/dist/src/common/
ieee802_1x_defs.h 67 Checked,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 88 BitVector Checked(getNumRegs());
90 if (Checked[Reg])
102 Checked.set(*SR);
  /src/external/bsd/wpa/dist/src/pae/
ieee802_1x_cp.c 172 sm->validate_frames = Checked;
191 sm->validate_frames = Checked;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 1675 // Single-bit booleans don't need to be checked. Special-case this to avoid
3200 ArrayRef<std::pair<llvm::Value *, SanitizerMask>> Checked,
3204 assert(Checked.size() > 0);
3212 for (int i = 0, n = Checked.size(); i < n; ++i) {
3213 llvm::Value *Check = Checked[i].first;
3216 CGM.getCodeGenOpts().SanitizeTrap.has(Checked[i].second)
3218 : CGM.getCodeGenOpts().SanitizeRecover.has(Checked[i].second)
3236 CheckRecoverableKind RecoverKind = getRecoverableKind(Checked[0].second);
3237 assert(SanOpts.has(Checked[0].second));
3239 for (int i = 1, n = Checked.size(); i < n; ++i)
    [all...]
CodeGenFunction.h 1884 /// value can be checked.
2270 /// Returns whether we should perform a type checked load when loading a
2275 /// Emit a type checked load from the given vtable.
4539 void EmitCheck(ArrayRef<std::pair<llvm::Value *, SanitizerMask>> Checked,
4555 void EmitTrapCheck(llvm::Value *Checked, SanitizerHandler CheckHandlerID);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86FloatingPoint.cpp 611 static std::atomic<bool> TABLE##Checked(false); \
612 if (!TABLE##Checked.load(std::memory_order_relaxed)) { \
615 TABLE##Checked.store(true, std::memory_order_relaxed); \
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 1890 bool Checked[WASM_NUM_SEC_ORDERS] = {};
1899 if (Checked[Next])
1902 Checked[Next] = true;
  /src/external/bsd/wpa/dist/src/drivers/
driver_macsec_qca.c 711 else if (validate_frames == Checked)
  /src/external/gpl3/gdb/dist/gdb/
ChangeLog-3.x 1534 * dbxread.c (read_type): Checked to make sure that a "," was
2639 * main.c (command_line_input): Checked for -1 return from
2896 (list_symbols): Checked through misc_function_vector for matching
2898 (make_symbol_completion_list): Checked through
3770 * inflow.c (terminal_inferior): Checked *all* return codes from
3819 macro would be checked during initial readin.
4769 checked after each ptrace and returned to the caller. Used in
  /src/external/gpl3/gdb.old/dist/gdb/
ChangeLog-3.x 1534 * dbxread.c (read_type): Checked to make sure that a "," was
2639 * main.c (command_line_input): Checked for -1 return from
2896 (list_symbols): Checked through misc_function_vector for matching
2898 (make_symbol_completion_list): Checked through
3770 * inflow.c (terminal_inferior): Checked *all* return codes from
3819 macro would be checked during initial readin.
4769 checked after each ptrace and returned to the caller. Used in
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaLookup.cpp 3441 SmallVector<TemplateArgument, 1> Checked;
3445 Checked) ||
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 5343 // We've checked that this is UNDEF or a constant of some kind.
10538 SmallPtrSetImpl<const SDNode*> &Checked,
10540 // If this node has already been checked, don't check it again.
10541 if (Checked.count(N))
10554 checkForCyclesHelper(Op.getNode(), Visited, Checked, DAG);
10556 Checked.insert(N);
10572 SmallPtrSet<const SDNode*, 32> checked;
10573 checkForCyclesHelper(N, visited, checked, DAG);
  /src/external/gpl2/xcvs/dist/src/
sanity.sh 7470 # which was checked out on a branch, the new subdirectory is
8390 # 1.1.4 and 1.1.6 in file2 since nothing was checked in on some of
9587 # only file0 should be checked out
9700 # **nothing** should be checked out**
9986 # If mod checked in, file should be marked for removal.
12409 # rebuilt, regardless of how and where files are checked
12976 # because the messymodchild isn't being checked out at all.
13936 # files as they are checked out in various configurations.
13939 # those messages which don't seem to be checked thoroughly
13948 # checked out into another director
    [all...]

Completed in 55 milliseconds