HomeSort by relevance Sort by last modified time
    Searched refs:AT (Results 76 - 100 of 161) sorted by null

1 2 34 5 6 7

  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/machine/
asm.h 203 move AT, ra; \
209 .set at;
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/machine/
asm.h 203 move AT, ra; \
209 .set at;
  /external/clang/lib/AST/
MicrosoftMangle.cpp 210 // Variables at global scope with internal linkage are not mangled.
228 // name with leading underscores or leading/trailing at signs. So, by
229 // default, we emit an asm marker at the start so we get the name right.
270 // We should never ever see a FunctionNoProtoType at this point.
323 } else if (const ArrayType *AT = getASTContext().getAsArrayType(Ty)) {
325 mangleDecayedArrayType(AT, true);
326 if (AT->getElementType()->isArrayType())
725 // ?_R1 # RTTI Base Class Descriptor at (a,b,c,d)
    [all...]
ASTDiagnostic.cpp 50 if (const AttributedType *AT = dyn_cast<AttributedType>(Ty)) {
51 QT = AT->desugar();
55 if (const AutoType *AT = dyn_cast<AutoType>(Ty)) {
56 if (!AT->isSugared())
58 QT = AT->desugar();
841 // Get the parameter at index TotalArgs. If index is larger
    [all...]
APValue.cpp 468 const ArrayType *AT = Ctx.getAsArrayType(Ty);
469 QualType ElemTy = AT->getElementType();
RecordLayoutBuilder.cpp 58 /// EmptySubobjectMap - Keeps track of which empty subobjects exist at different
100 "Field offset not at char boundary!");
130 /// at the given offset.
136 /// CanPlaceFieldAtOffset - Return whether a field can be placed at the given
204 // There is already an empty class of the same type at this offset.
280 // subobject of non-empty bases, are empty bases that can be placed at
330 // We are able to place the base at this offset. Make sure to update the
407 // If we have an array type we need to look at every element.
408 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(T)) {
409 QualType ElemTy = Context.getBaseElementType(AT);
    [all...]
Type.cpp 70 if (const ArrayType *AT = Ctx.getAsArrayType(T))
71 return AT->getElementType().isConstant(Ctx);
556 AutoType *VisitAutoType(const AutoType *AT) {
557 return const_cast<AutoType*>(AT);
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp 784 enum TokenType {STRING, VAR, NUMBER, STREAM_END, ERROR, QUESTION, STAR, PLUS, LBRACE, RBRACE, LPAR, RPAR, SEMI, EQ, COMMA, BAR, AT, WAVE, PERCENT};
841 case '@' : tokenType = AT; break;
886 // About the scanner's behavior for STRING, AT, and ESCAPE:
889 // (STRING, AT, and ESCAPE) at one time, with no regard of their
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 95 // specified then the result of get_local_size is known at compile time and
110 // samplers at compile time.
121 size_t getTypeSize(ArrayType * const AT, bool dereferencePtr = false);
331 // them at the end of processing after the
423 // bits that are valid at this point.
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 170 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
171 if (AT->getSize() == 0)
173 FT = AT->getElementType();
180 // C++ record fields are never empty, at least in the Itanium ABI.
270 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
271 if (AT->getSize().getZExtValue() != 1)
273 FT = AT->getElementType();
631 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty))
632 return shouldReturnTypeInRegister(AT->getElementType(), Context,
    [all...]
CodeGenTypes.cpp 168 if (const ArrayType *AT = dyn_cast<ArrayType>(T))
169 return isSafeToConvert(AT->getElementType(), CGT, AlreadyChecked);
191 /// function argument or result position can be converted to an IR type at this
633 // If we don't have a StructType at all yet, create the forward declaration.
CGExprConstant.cpp 104 // Add the vtable at the start of the object.
245 llvm::ArrayType *AT = cast<llvm::ArrayType>(LastElt->getType());
246 assert(AT->getElementType()->isIntegerTy(CharWidth) &&
247 AT->getNumElements() != 0 &&
251 NextFieldOffsetInChars -= CharUnits::fromQuantity(AT->getNumElements());
255 AppendPadding(CharUnits::fromQuantity(AT->getNumElements()-1));
290 "Should have at least one bit left!");
499 // we must have a flexible array member at the end.
859 // Resize the string to the right size, adding zeros at the end, or
    [all...]
CGCall.cpp 345 // If we don't have a prototype at all, but we're supposed to
509 if (const ConstantArrayType *AT = Context.getAsConstantArrayType(type)) {
510 uint64_t NumElts = AT->getSize().getZExtValue();
512 GetExpandedTypes(AT->getElementType(), expandedTypes);
558 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
559 unsigned NumElts = AT->getSize().getZExtValue();
560 QualType EltTy = AT->getElementType();
617 /// at its inner goodness. Dive as deep as possible without entering an element
628 // If the first elt is at least as large as what we're looking for, or if the
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 784 enum TokenType {STRING, VAR, NUMBER, STREAM_END, ERROR, QUESTION, STAR, PLUS, LBRACE, RBRACE, LPAR, RPAR, SEMI, EQ, COMMA, BAR, AT, WAVE, PERCENT};
841 case '@' : tokenType = AT; break;
886 // About the scanner's behavior for STRING, AT, and ESCAPE:
889 // (STRING, AT, and ESCAPE) at one time, with no regard of their
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 95 // specified then the result of get_local_size is known at compile time and
110 // samplers at compile time.
121 size_t getTypeSize(ArrayType * const AT, bool dereferencePtr = false);
331 // them at the end of processing after the
423 // bits that are valid at this point.
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
ia64.S 40 // original bn_mul_words spun at 5*n or 2.5 times slower than expected
132 // Q. What's the heck with 'rum 1<<5' at the end of every function?
143 // to upper bank, but at least discourages to do so. If you don't
160 // compress the epilogue and get down to 2*n+6, but at the cost of
171 .skip 32 // makes the loop body aligned at 64-byte boundary
224 .skip 32 // makes the loop body aligned at 64-byte boundary
283 .skip 32 // makes the loop body aligned at 64-byte boundary
305 // ------^----- serves as (p50) at first (p27)
314 { .mmi; mov r40=0 // serves as r35 at first (p27)
354 setf.sig f37=r0 // serves as carry at (p18) tic
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 91 /// If the type is not an array type at all, the original value is returned.
97 while (const ArrayType *AT = Ctx.getAsArrayType(Ty)) {
98 Ty = AT->getElementType();
119 // See if we're constructing an existing region by looking at the next
  /external/llvm/lib/CodeGen/
Analysis.cpp 328 // that we end up back at the tail call instruction itself.
362 if (ArrayType *AT = dyn_cast<ArrayType>(T))
363 return Idx < AT->getNumElements();
371 /// stopping at the next leaf node (which may be a legitimate scalar type or an
400 // out the left-most element at each node.
431 // (i.e. node with no valid sub-type at any index, so {} does count as a leaf
565 // an extractvalue would happen at the front of the RetPath list, so since
572 // Finally, we can check whether the value produced by the tail call at this
  /external/nist-sip/java/gov/nist/core/
GenericObject.java 61 protected static final String AT = Separators.AT;
  /external/nist-sip/java/gov/nist/javax/sip/address/
SipUri.java 281 s = new StringBuffer(user).append(AT);
302 s = new StringBuffer(user).append(AT);
441 * colon (%3a), at-sign (%40) and the "unwise" characters,
523 /** Sets the user of SipURI. The identifier of a particular resource at
525 * "at" sign make up the user-info.
919 * which SIP method to use in requests directed at this URI. This is
    [all...]
  /external/openssl/crypto/bn/asm/
ia64.S 40 // original bn_mul_words spun at 5*n or 2.5 times slower than expected
132 // Q. What's the heck with 'rum 1<<5' at the end of every function?
143 // to upper bank, but at least discourages to do so. If you don't
160 // compress the epilogue and get down to 2*n+6, but at the cost of
171 .skip 32 // makes the loop body aligned at 64-byte boundary
224 .skip 32 // makes the loop body aligned at 64-byte boundary
283 .skip 32 // makes the loop body aligned at 64-byte boundary
305 // ------^----- serves as (p50) at first (p27)
314 { .mmi; mov r40=0 // serves as r35 at first (p27)
354 setf.sig f37=r0 // serves as carry at (p18) tic
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 55 /// \brief Check whether the array of type AT can be initialized by the Init
59 static StringInitFailureKind IsStringInit(Expr *Init, const ArrayType *AT,
61 if (!isa<ConstantArrayType>(AT) && !isa<IncompleteArrayType>(AT))
68 if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType())
77 Context.getCanonicalType(AT->getElementType()).getUnqualifiedType();
149 static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT,
156 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
168 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
214 /// the initializer list one element at a time. The IList and Inde
    [all...]
SemaStmt.cpp 864 // Detect duplicate case ranges, which usually don't exist at all in
    [all...]
  /external/qemu/android/skin/
keyset.c 118 _KEYSYM1_(AT) \
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRv3.g 74 AT='@';

Completed in 2288 milliseconds

1 2 34 5 6 7