OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kTypeInt32
(Results
1 - 14
of
14
) sorted by null
/external/v8/src/compiler/
machine-type.cc
32
PRINT(
kTypeInt32
);
machine-type.h
34
kTypeInt32
= 1 << 9,
45
kMachInt8 = kRepWord8 |
kTypeInt32
,
47
kMachInt16 = kRepWord16 |
kTypeInt32
,
49
kMachInt32 = kRepWord32 |
kTypeInt32
,
65
const MachineTypeUnion kTypeMask = kTypeBool |
kTypeInt32
| kTypeUint32 |
simplified-lowering.cc
308
} else if (use_type &
kTypeInt32
|| use_type & kTypeUint32) {
491
(use & (
kTypeInt32
| kTypeNumber | kTypeAny)) == 0) {
514
if ((in & kTypeMask) ==
kTypeInt32
|| (in & kRepMask) == kRepWord32) {
517
VisitUnop(node,
kTypeInt32
| use_rep,
kTypeInt32
| use_rep);
522
VisitUnop(node,
kTypeInt32
| kRepFloat64,
kTypeInt32
| kRepWord32);
527
VisitUnop(node,
kTypeInt32
,
kTypeInt32
| use_rep);
652
return VisitBinop(node, kRepWord32, kRepWord32 |
kTypeInt32
);
[
all
...]
representation-change.h
80
} else if (output_type &
kTypeInt32
) {
101
} else if (output_type &
kTypeInt32
) {
315
if (type->Is(Type::Signed32())) return
kTypeInt32
;
/external/v8/test/cctest/compiler/
test-representation-change.cc
153
Node* c = r.changer()->GetRepresentationFor(n, kRepWord32 |
kTypeInt32
,
184
CheckChange(IrOpcode::kChangeInt32ToTagged, kRepWord32 |
kTypeInt32
,
190
CheckChange(IrOpcode::kChangeTaggedToInt32, kRepTagged |
kTypeInt32
,
197
CheckChange(IrOpcode::kChangeInt32ToFloat64, kRepWord32 |
kTypeInt32
,
201
CheckChange(IrOpcode::kChangeFloat64ToInt32, kRepFloat64 |
kTypeInt32
,
211
// TODO(titzer): assume that uses of a word32 without a sign mean
kTypeInt32
.
213
kRepWord32 |
kTypeInt32
);
286
r.CheckTypeError(kRepWord64, kRepWord32 |
kTypeInt32
);
287
r.CheckTypeError(kRepWord32 |
kTypeInt32
, kRepWord64);
test-simplified-lowering.cc
698
if (type &
kTypeInt32
) {
722
if (type &
kTypeInt32
) {
974
// NumberToInt32(x: kRepTagged |
kTypeInt32
) used as kRepTagged
[
all
...]
/frameworks/av/include/media/stagefright/foundation/
AMessage.h
133
kTypeInt32
,
/frameworks/av/media/libstagefright/foundation/
AMessage.cpp
515
case
kTypeInt32
:
612
case
kTypeInt32
:
679
case
kTypeInt32
:
736
*type =
kTypeInt32
;
/frameworks/av/media/ndk/
NdkMediaFormat.cpp
89
case AMessage::
kTypeInt32
:
/external/v8/src/compiler/ia32/
instruction-selector-ia32.cc
61
opcode = typ ==
kTypeInt32
? kIA32Movsxbl : kIA32Movzxbl;
64
opcode = typ ==
kTypeInt32
? kIA32Movsxwl : kIA32Movzxwl;
/frameworks/base/media/jni/
android_media_Utils.cpp
180
case AMessage::
kTypeInt32
:
/external/v8/src/compiler/arm64/
instruction-selector-arm64.cc
177
opcode = typ ==
kTypeInt32
? kArm64Ldrsb : kArm64Ldrb;
181
opcode = typ ==
kTypeInt32
? kArm64Ldrsh : kArm64Ldrh;
/external/v8/src/compiler/x64/
instruction-selector-x64.cc
76
opcode = typ ==
kTypeInt32
? kX64Movsxbl : kX64Movzxbl;
79
opcode = typ ==
kTypeInt32
? kX64Movsxwl : kX64Movzxwl;
/frameworks/av/media/libstagefright/
MPEG4Writer.cpp
[
all
...]
Completed in 2447 milliseconds