HomeSort by relevance Sort by last modified time
    Searched defs:GA (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 126 GlobalAlias *GA = M->getNamedAlias(ExtractAliases[i]);
127 if (!GA) {
132 GVs.insert(GA);
144 for (Module::alias_iterator GA = M->alias_begin(), E = M->alias_end();
145 GA != E; GA++) {
146 if (RegEx.match(GA->getName())) {
147 GVs.insert(&*GA);
  /external/clang/test/Layout/
ms-x86-vtordisp.cpp 341 struct GA {
344 struct GB: public GA {};
345 struct GC: public virtual GA {
357 // CHECK-NEXT: 4 | (vtordisp for vbase GA)
358 // CHECK-NEXT: 8 | struct GA (virtual base)
359 // CHECK-NEXT: 8 | (GA vftable pointer)
363 // CHECK-NEXT: 16 | struct GA (primary base)
364 // CHECK-NEXT: 16 | (GA vftable pointer)
373 // CHECK-X64-NEXT: 12 | (vtordisp for vbase GA)
374 // CHECK-X64-NEXT: 16 | struct GA (virtual base
    [all...]
  /external/llvm/lib/Target/BPF/
BPFISelLowering.cpp 532 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, MVT::i64);
534 return DAG.getNode(BPFISD::Wrapper, DL, MVT::i64, GA);
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 199 const GlobalAddressSDNode * /*GA*/) const {
574 const auto *GA = cast<GlobalAddressSDNode>(Op);
576 assert(GA->getTargetFlags() == 0 && "WebAssembly doesn't set target flags");
577 if (GA->getAddressSpace() != 0)
581 DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT, GA->getOffset()));
  /external/skia/src/core/
SkScalerContext.cpp 751 // GA is the matrix A with rotation removed.
752 SkMatrix GA;
759 // G is the Givens Matrix for A (rotational matrix where GA[0][1] == 0).
763 GA = G;
764 GA.preConcat(A);
774 GA = A;
780 // At this point, given GA, create s.
783 s->fX = SkScalarAbs(GA.get(SkMatrix::kMScaleX));
784 s->fY = SkScalarAbs(GA.get(SkMatrix::kMScaleY));
787 SkScalar yScale = SkScalarAbs(GA.get(SkMatrix::kMScaleY))
    [all...]
  /device/google/contexthub/firmware/src/drivers/ams_tmd2772/
ams_tmd2772.c 277 float GA;
281 GA = 0.274f;
284 GA = 0.592f;
287 GA = 1.97f;
290 float lux1 = GA * 207 * (als0 - (1.799 * als1)) * cpl;
291 float lux2 = GA * 207 * ((0.188f * als0) - (0.303 * als1)) * cpl;
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
rfc2217.py 101 GA = to_bytes([249]) # Go Ahead
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 103 FE, CO, NI, CU, ZN, GA, GE, AS, SE, BR, KR, RB, SR, Y, ZR, NB, MO, TC, RU, RH, PD, AG, CD,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
telnetlib.py 67 GA = chr(249) # Go Ahead
  /prebuilts/gdb/linux-x86/lib/python2.7/
telnetlib.py 67 GA = chr(249) # Go Ahead
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 67 GA = chr(249) # Go Ahead
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 67 GA = chr(249) # Go Ahead
  /bionic/libc/include/arpa/
telnet.h 44 #define GA 249 /* you may reverse the line */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /development/ndk/platforms/android-21/include/arpa/
telnet.h 44 #define GA 249 /* you may reverse the line */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /development/ndk/platforms/android-9/include/arpa/
telnet.h 44 #define GA 249 /* you may reverse the line */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 254 SDValue XCoreTargetLowering::getGlobalAddressWrapper(SDValue GA,
258 SDLoc dl(GA);
261 return DAG.getNode(XCoreISD::PCRelativeWrapper, dl, MVT::i32, GA);
266 return DAG.getNode(XCoreISD::CPRelativeWrapper, dl, MVT::i32, GA);
268 return DAG.getNode(XCoreISD::DPRelativeWrapper, dl, MVT::i32, GA);
294 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, MVT::i32, FoldedOffset);
295 GA = getGlobalAddressWrapper(GA, GV, DAG);
299 GA = DAG.getNode(ISD::ADD, DL, MVT::i32, GA, Remaining)
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 163 /// If GA aliases a function, the alias's name is matched as a function name
165 bool isIn(const GlobalAlias &GA, StringRef Category) const {
166 if (isIn(*GA.getParent(), Category))
169 if (isa<FunctionType>(GA.getType()->getElementType()))
170 return SCL->inSection("fun", GA.getName(), Category);
172 return SCL->inSection("global", GA.getName(), Category) ||
173 SCL->inSection("type", GetGlobalTypeString(GA), Category);
262 bool isInstrumented(const GlobalAlias *GA);
495 bool DataFlowSanitizer::isInstrumented(const GlobalAlias *GA) {
496 return !ABIList.isIn(*GA, "uninstrumented")
    [all...]
  /external/tcpdump/
print-telnet.c 73 #define GA 249 /* you may reverse the line */
94 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/arpa/
telnet.h 44 #define GA 249 /* you may reverse the line */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/arpa/
telnet.h 44 #define GA 249 /* you may reverse the line */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,

Completed in 827 milliseconds

1 2 3 4