Searched defs:J1 (Results 1 - 10 of 10) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp281 bool J1 = Value & 0x400000; local
283 J1 ^= I;
287 out |= !J1 << 13; // J1 bit
303 out |= (Value & 0x20000) >> 4; // J1 bit
H A DARMMCCodeEmitter.cpp480 uint32_t J1 = (offset & 0x400000) >> 22; local
482 J1 = (~J1 & 0x1);
484 J1 ^= S;
488 offset |= J1 << 22;
619 bool J1 = (Val & 0x400000); local
621 if (I ^ J1)
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c64 enum { J1, J2 = -1, J3 }; enumerator in enum:__anon3283
/external/guice/core/test/com/google/inject/
H A DScopesTest.java1003 I2(J1 j) {
1014 J0(J1 j) {
1019 static class J1 { class in class:ScopesTest
1025 J1(S synchronizationBarrier, J2 j) { method in class:ScopesTest.J1
1077 * <p>I0 -> I1 -> I2 -> J1 and J0 -> J1 -> J2 -> K1 and K0 -> K1 -> K2,
1078 * where I1, J1 and K1 are created in parallel.
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp478 bool J1 = Value & 0x400000; local
480 J1 ^= I;
484 out |= !J1 << 13; // J1 bit
498 out |= (Value & 0x20000) >> 4; // J1 bit
508 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
511 // J = either J1 or J2 bit
535 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
538 // J = either J1 or J2 bit, 0 = zero.
H A DARMMCCodeEmitter.cpp602 uint32_t J1 = (offset & 0x400000) >> 22; local
604 J1 = (~J1 & 0x1);
606 J1 ^= S;
610 offset |= J1 << 22;
765 bool J1 = (Val & 0x400000); local
767 if (I ^ J1)
/external/ImageMagick/MagickCore/
H A Dresize.c1331 #undef J1
1332 static double J1(double x)
1469 return(p*J1(x));
1324 #undef J1 macro
1325 static double J1(double x) function
/external/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp272 bool isPairInSame(Instruction *J1, Instruction *J2) { argument
273 DenseMap<Instruction *, int>::iterator J1I = PossibleRedIdx.find(J1);
286 void recordPair(Instruction *J1, Instruction *J2, unsigned i) { argument
287 if (PossibleRedIdx.count(J1)) {
291 PossibleRedIter[J1] = 0;
294 int Idx = PossibleRedIdx[J1];
/external/capstone/arch/ARM/
H A DARMDisassembler.c2223 // Note the J1 and J2 values are from the encoded instruction. So here
2225 // I1 = NOT(J1 EOR S);
2230 unsigned J1 = fieldFromInstruction_4(Insn, 13, 1); local
2232 unsigned I1 = !(J1 ^ S);
3884 // Val is passed in as S:J1:J2:imm10H:imm10L:'0'
3885 // Note only one trailing zero not two. Also the J1 and J2 values are from
3887 // I1 = NOT(J1 EOR S);
3892 unsigned J1 = (Val >> 22) & 1; local
3894 unsigned I1 = !(J1 ^ S);
4014 // Val is passed in as S:J1
4022 unsigned J1 = (Val >> 22) & 1; local
[all...]
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp2264 // Note the J1 and J2 values are from the encoded instruction. So here
2266 // I1 = NOT(J1 EOR S);
2271 unsigned J1 = fieldFromInstruction(Insn, 13, 1); local
2273 unsigned I1 = !(J1 ^ S);
3946 // Val is passed in as S:J1:J2:imm10H:imm10L:'0'
3947 // Note only one trailing zero not two. Also the J1 and J2 values are from
3949 // I1 = NOT(J1 EOR S);
3954 unsigned J1 = (Val >> 22) & 1; local
3956 unsigned I1 = !(J1 ^ S);
4084 // Val is passed in as S:J1
4092 unsigned J1 = (Val >> 22) & 1; local
[all...]

Completed in 460 milliseconds