OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BytesLeft
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp
49
unsigned
BytesLeft
= SizeVal & 3;
90
if (
BytesLeft
== 0)
94
unsigned BytesLeftSave =
BytesLeft
;
96
while (
BytesLeft
) {
97
if (
BytesLeft
>= 2) {
112
BytesLeft
-= VTSize;
117
BytesLeft
= BytesLeftSave;
118
while (
BytesLeft
) {
119
if (
BytesLeft
>= 2) {
133
BytesLeft
-= VTSize
[
all
...]
/external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp
83
unsigned
BytesLeft
= 0;
117
BytesLeft
= SizeVal % UBytes;
156
} else if (
BytesLeft
) {
158
unsigned Offset = SizeVal -
BytesLeft
;
166
DAG.getConstant(
BytesLeft
, SizeVT),
217
unsigned
BytesLeft
= SizeVal % UBytes;
240
if (
BytesLeft
) {
242
unsigned Offset = SizeVal -
BytesLeft
;
251
DAG.getConstant(
BytesLeft
, SizeVT),
/external/llvm/lib/Support/
MemoryBuffer.cpp
323
size_t
BytesLeft
= MapSize;
327
while (
BytesLeft
) {
328
ssize_t NumRead = ::read(FD, BufPtr,
BytesLeft
);
341
BytesLeft
-= NumRead;
/external/llvm/lib/Analysis/
ConstantFolding.cpp
231
/// pointer to copy results into and
BytesLeft
is the number of bytes left in
234
unsigned char *CurPtr, unsigned
BytesLeft
,
252
for (unsigned i = 0; i !=
BytesLeft
&& ByteOffset != IntBytes; ++i) {
262
return ReadDataFromGlobal(C, ByteOffset, CurPtr,
BytesLeft
, TD);
266
return ReadDataFromGlobal(C, ByteOffset, CurPtr,
BytesLeft
, TD);
284
BytesLeft
, TD))
296
if (
BytesLeft
<= NextEltOffset-CurEltOffset-ByteOffset)
301
BytesLeft
-= NextEltOffset-CurEltOffset-ByteOffset;
314
BytesLeft
, TD))
316
if (EltSize >=
BytesLeft
)
[
all
...]
Completed in 222 milliseconds