OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs: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) {
113
BytesLeft
-= VTSize;
118
BytesLeft
= BytesLeftSave;
119
while (
BytesLeft
) {
120
if (
BytesLeft
>= 2) {
134
BytesLeft
-= VTSize
[
all
...]
ARMISelLowering.cpp
[
all
...]
/external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp
86
unsigned
BytesLeft
= 0;
120
BytesLeft
= SizeVal % UBytes;
159
} else if (
BytesLeft
) {
161
unsigned Offset = SizeVal -
BytesLeft
;
169
DAG.getConstant(
BytesLeft
, SizeVT),
228
unsigned
BytesLeft
= SizeVal % UBytes;
251
if (
BytesLeft
) {
253
unsigned Offset = SizeVal -
BytesLeft
;
262
DAG.getConstant(
BytesLeft
, SizeVT),
/external/llvm/lib/Support/
MemoryBuffer.cpp
361
size_t
BytesLeft
= MapSize;
367
while (
BytesLeft
) {
369
ssize_t NumRead = ::pread(FD, BufPtr,
BytesLeft
, MapSize-
BytesLeft
+Offset);
371
ssize_t NumRead = ::read(FD, BufPtr,
BytesLeft
);
385
BytesLeft
-= NumRead;
Completed in 68 milliseconds