HomeSort by relevance Sort by last modified time
    Searched refs:Init (Results 26 - 50 of 2848) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dmodshow.idl 30 HRESULT Init(
  /system/update_engine/common/
terminator.cc 27 void Terminator::Init() {
33 void Terminator::Init(int exit_status) {
35 Init();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/TableGen/
Record.h 259 class Init {
310 explicit Init(InitKind K, uint8_t Opc = 0) : Kind(K), Opc(Opc) {}
313 Init(const Init &) = delete;
314 Init &operator=(const Init &) = delete;
315 virtual ~Init() = default;
337 /// Init based on the passed in type.
338 virtual Init *convertInitializerTo(RecTy *Ty) const = 0;
342 /// out, returning them as a new init of bits type. If it is not legal to us
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/TableGen/
Record.h 259 class Init {
310 explicit Init(InitKind K, uint8_t Opc = 0) : Kind(K), Opc(Opc) {}
313 Init(const Init &) = delete;
314 Init &operator=(const Init &) = delete;
315 virtual ~Init() = default;
337 /// Init based on the passed in type.
338 virtual Init *convertInitializerTo(RecTy *Ty) const = 0;
342 /// out, returning them as a new init of bits type. If it is not legal to us
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 239 class Init {
282 Init(const Init &) = delete;
283 Init &operator=(const Init &) = delete;
290 explicit Init(InitKind K, uint8_t Opc = 0) : Kind(K), Opc(Opc) {}
293 virtual ~Init() {}
315 /// Init based on the passed in type.
316 virtual Init *convertInitializerTo(RecTy *Ty) const = 0;
320 /// out, returning them as a new init of bits type. If it is not legal to us
    [all...]
  /external/libchrome/crypto/
hmac.h 42 // Initializes this instance using |key| of the length |key_length|. Call Init
51 // Init() may fail.
52 bool Init(const unsigned char* key, size_t key_length) WARN_UNUSED_RESULT;
54 // Initializes this instance using |key|. Call Init
56 bool Init(SymmetricKey* key) WARN_UNUSED_RESULT;
58 // Initializes this instance using |key|. Call Init only once. It returns
60 bool Init(const base::StringPiece& key) WARN_UNUSED_RESULT {
61 return Init(reinterpret_cast<const unsigned char*>(key.data()),
66 // to the constructor and the key supplied to the Init method. The HMAC is
73 // supplied to the Init method. Use of this method is strongly recommende
    [all...]
  /external/libchrome/
testrunner.cc 25 base::CommandLine::Init(argc, argv);
  /external/lzma/CPP/7zip/Archive/Common/
HandlerOut.h 43 void Init();
45 CMultiMethodProps() { Init(); }
59 void Init();
60 CSingleMethodProps() { Init(); }
  /external/lzma/CPP/7zip/Crypto/
RandGen.h 13 void Init();
  /external/puffin/src/
testrunner.cc 14 base::CommandLine::Init(argc, argv);
  /external/webrtc/talk/media/webrtc/
webrtcvideocapturerfactory.cc 37 if (!capturer->Init(device)) {
  /external/webrtc/webrtc/sound/
platformsoundsystemfactory.cc 28 if (!instance_->Init()) {
  /external/webrtc/webrtc/test/testsupport/mock/
mock_frame_reader.h 23 MOCK_METHOD0(Init, bool());
mock_frame_writer.h 23 MOCK_METHOD0(Init, bool());

Completed in 812 milliseconds

12 3 4 5 6 7 8 91011>>