OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_pInput
(Results
1 - 9
of
9
) sorted by null
/frameworks/compile/mclinker/unittests/
ELFReaderTest.cpp
30
:
m_pInput
(NULL)
66
m_pInput
= m_pIRBuilder->ReadInput("test_x86_64", path);
67
ASSERT_TRUE(NULL!=
m_pInput
);
69
ASSERT_TRUE(
m_pInput
->hasMemArea());
71
llvm::StringRef region =
m_pInput
->memArea()->request(
m_pInput
->fileOffset(),
74
bool shdr_result = m_pELFReader->readSectionHeaders(*
m_pInput
, ELF_hdr);
87
ASSERT_EQ(
m_pInput
->context()->numOfSections(), 13);
88
LDContext::const_sect_iterator iter =
m_pInput
->context()->sectBegin();
102
ASSERT_TRUE(
m_pInput
->hasMemArea())
[
all
...]
ELFReaderTest.h
44
mcld::Input*
m_pInput
;
/frameworks/compile/mclinker/include/mcld/LD/
TextDiagnosticPrinter.h
41
const Input*
m_pInput
;
/external/chromium_org/third_party/webrtc/modules/video_capture/windows/
sink_filter_ds.cc
393
m_pInput
(NULL),
398
m_pInput
= new CaptureInputPin(moduleId,NAME ("VideoCaptureInputPin"),
402
if (
m_pInput
== NULL || FAILED (* phr))
413
delete
m_pInput
;
428
pPin =
m_pInput
;
446
if (
m_pInput
&&
m_pInput
->IsConnected())
448
m_pInput
->Active();
450
if (
m_pInput
&& !
m_pInput
->IsConnected()
[
all
...]
sink_filter_ds.h
94
CaptureInputPin *
m_pInput
;
/frameworks/compile/mclinker/lib/LD/
TextDiagnosticPrinter.cpp
28
: m_OStream(pOStream), m_Config(pConfig),
m_pInput
(NULL) {
158
m_pInput
= &pInput;
163
m_pInput
= NULL;
/frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.cpp
92
m_pInput
(NULL),
162
m_MultipartList.back().m_Inputs.insert(
m_pInput
);
172
m_MultipartList.back().m_Inputs.insert(
m_pInput
);
215
m_MultipartList.back().m_Inputs.erase(
m_pInput
);
219
m_MultipartList.back().m_Inputs.insert(
m_pInput
);
224
if (
m_pInput
== NULL) {
225
m_pInput
= &pInput;
229
m_pInput
= &pInput;
MipsGOT.h
150
const Input*
m_pInput
; ///< current input
/external/pdfium/core/src/fxcodec/codec/
fx_codec_flate.cpp
85
const FX_BYTE*
m_pInput
;
133
m_pInput
= src_buf;
148
code = (
m_pInput
[byte_pos++] & ((1 << (8 - bit_pos)) - 1)) << bit_left;
151
code |=
m_pInput
[byte_pos] >> (8 - bit_left);
154
code |=
m_pInput
[byte_pos++] << bit_left;
156
code |=
m_pInput
[byte_pos] >> (8 - bit_left);
[
all
...]
Completed in 315 milliseconds