HomeSort by relevance Sort by last modified time
    Searched refs:EC (Results 426 - 450 of 799) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
Memory.h 63 /// \p EC [out] returns an object describing any error that occurs.
75 /// otherwise a null MemoryBlock is with \p EC describing the error.
81 std::error_code &EC);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Memory.h 63 /// \p EC [out] returns an object describing any error that occurs.
75 /// otherwise a null MemoryBlock is with \p EC describing the error.
81 std::error_code &EC);
  /external/autotest/client/cros/
ec.py 43 """Class for EC common.
46 across various CrOS MCUs (ec proper, USB-PD, Sensor Hub). At the moment
53 @param target: target name of ec to communicate with.
56 ec_info = utils.system_output("mosys ec info",
64 """Executes ec command and returns results.
69 @returns: string of results from ec command.
78 class EC(EC_Common):
79 """Class for CrOS embedded controller (EC)."""
80 HELLO_RE = "EC says hello"
91 """Test EC hello command
    [all...]
  /external/llvm/lib/DebugInfo/CodeView/
TypeRecord.cpp 24 if (auto EC = consumeObject(Data, L))
25 return EC;
37 if (auto EC = consumeObject(Data, L))
38 return EC;
49 if (auto EC = consumeObject(Data, L))
50 return EC;
87 if (auto EC = consumeObject(Data, L))
88 return EC;
189 if (auto EC = consumeObject(Data, L))
190 return EC;
    [all...]
  /external/llvm/lib/Support/
GraphWriter.cpp 70 std::error_code EC = sys::fs::createTemporaryFile(Name, "dot", FD, Filename);
71 if (EC) {
72 errs() << "Error: " << EC.message() << "\n";
Timer.cpp 65 std::error_code EC;
67 OutputFilename, EC, sys::fs::F_Append | sys::fs::F_Text);
68 if (!EC)
  /external/llvm/tools/bugpoint/
Miscompilation.cpp     [all...]
ToolRunner.cpp 126 std::error_code EC = sys::fs::createTemporaryFile(
128 if (EC) {
129 errs() << "Error making unique filename: " << EC.message() << "\n";
464 std::error_code EC =
466 if (EC) {
467 errs() << "Error making unique filename: " << EC.message() << "\n";
701 std::error_code EC =
703 if (EC) {
704 errs() << "Error making unique filename: " << EC.message() << "\n";
811 std::error_code EC = sys::fs::createUniqueFile
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 507 const SCEV *EC = SE->getExitCount(L, *I);
509 (*I)->getName() << ": " << *EC << "\n");
510 if (isa<SCEVCouldNotCompute>(EC))
512 if (const SCEVConstant *ConstEC = dyn_cast<SCEVConstant>(EC)) {
515 } else if (!SE->isLoopInvariant(EC, L))
518 if (SE->getTypeSizeInBits(EC->getType()) > (TT.isArch64Bit() ? 64 : 32))
559 ExitCount = EC;
PPCVSXSwapRemoval.cpp 116 EquivalenceClasses<int> *EC;
212 // FIXME: See the allocation of EC in initialize().
213 delete EC;
234 // FIXME: Currently we allocate EC each time because we don't have
237 EC = new EquivalenceClasses<int>;
538 EC->insert(SwapEntry.VSEId);
618 (void)EC->unionSets(SwapVector[DefIdx].VSEId,
638 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId);
749 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId);
765 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId)
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 258 void llvm::error(std::error_code EC) {
259 if (!EC)
262 errs() << ToolName << ": error reading file: " << EC.message() << ".\n";
274 std::error_code EC) {
275 assert(EC);
276 errs() << ToolName << ": '" << File << "': " << EC.message() << ".\n";
499 if (std::error_code EC = SecOrErr.getError())
500 return EC;
503 if (std::error_code EC = SymTabOrErr.getError())
504 return EC;
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 270 std::error_code EC;
272 Opts.OutputPath, EC, (Binary ? sys::fs::F_None : sys::fs::F_Text));
273 if (EC) {
275 << EC.message();
293 if (std::error_code EC = Buffer.getError()) {
294 Error = EC.message();
  /external/llvm/lib/IR/
GCOV.cpp 486 if (std::error_code EC = BufferOrErr.getError()) {
487 errs() << Filename << ": " << EC.message() << "\n";
562 std::error_code EC;
563 auto OS = llvm::make_unique<raw_fd_ostream>(CoveragePath, EC,
565 if (EC) {
566 errs() << EC.message() << "\n";
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 220 std::error_code EC;
221 auto Out = llvm::make_unique<tool_output_file>(OutputFilename, EC,
223 if (EC) {
224 errs() << EC.message() << '\n';
406 if (std::error_code EC = BufferPtr.getError()) {
407 errs() << InputFilename << ": " << EC.message() << '\n';
  /external/clang/lib/Frontend/
DependencyFile.cpp 397 std::error_code EC;
398 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::F_Text);
399 if (EC) {
401 << EC.message();
FrontendActions.cpp 212 std::error_code EC;
217 for (vfs::recursive_directory_iterator Dir(FS, DirNative, EC), End;
218 Dir != End && !EC; Dir.increment(EC)) {
252 if (EC)
253 return EC;
600 std::error_code EC;
601 OutFile.reset(new llvm::raw_fd_ostream(OutputFileName.str(), EC,
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 341 std::error_code EC;
342 llvm::raw_fd_ostream o(OutputFile, EC, llvm::sys::fs::F_Text);
343 if (EC) {
344 llvm::errs() << "warning: could not create file: " << EC.message() << '\n';
  /external/llvm/lib/DebugInfo/PDB/Raw/
MappedBlockStream.cpp 108 if (auto EC = readBytes(Offset, MutableArrayRef<uint8_t>(WriteBuffer, Size)))
109 return EC;
247 if (auto EC = Pdb.setBlockData(StreamBlockAddr, OffsetInBlock, ChunkData))
248 return EC;
  /external/llvm/tools/llc/
llc.cpp 199 std::error_code EC;
203 auto FDOut = llvm::make_unique<tool_output_file>(OutputFilename, EC,
205 if (EC) {
206 errs() << EC.message() << '\n';
  /external/v8/src/x64/
sse-instr.h 15 V(paddsb, 66, 0F, EC) \
  /device/google/marlin/nfc/
libnfc-nxp.marlin.conf 206 A0, EC, 01, 00,
libnfc-nxp.sailfish.conf 206 A0, EC, 01, 00,
  /device/google/muskie/nfc/
libnfc-nxp.muskie.conf 155 A0, EC, 01, 01,
  /device/lge/bullhead/nfc/
libnfc-nxp.conf 173 A0, EC, 01, 00,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyFactorySpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
193 public static class EC
196 public EC()
198 super("EC", BouncyCastleProvider.CONFIGURATION);

Completed in 1196 milliseconds

<<11121314151617181920>>