Searched defs:ASM (Results 1 - 11 of 11) sorted by relevance

/external/libpcap/msdos/
H A Dmakefile22 ASM = tasm.exe -t -l -mx -m2 -DDEBUG macro
57 $(ASM) $*.asm, $*.obj
60 $(ASM) -DDOSX=1 $*.asm, $*.o32
/external/skia/src/jumper/
H A DSkJumper.cpp71 #define ASM(name, suffix) sk_##name##_##suffix macro
73 #define ASM(name, suffix) _sk_##name##_##suffix
82 StartPipelineFn ASM(start_pipeline, skx),
83 ASM(start_pipeline, hsw),
84 ASM(start_pipeline, avx),
85 ASM(start_pipeline, sse41),
86 ASM(start_pipeline, sse2),
87 ASM(start_pipeline, hsw_lowp),
88 ASM(start_pipeline,sse41_lowp),
89 ASM(start_pipelin
[all...]
/external/skqp/src/jumper/
H A DSkJumper.cpp71 #define ASM(name, suffix) sk_##name##_##suffix macro
73 #define ASM(name, suffix) _sk_##name##_##suffix
82 StartPipelineFn ASM(start_pipeline, skx),
83 ASM(start_pipeline, hsw),
84 ASM(start_pipeline, avx),
85 ASM(start_pipeline, sse41),
86 ASM(start_pipeline, sse2),
87 ASM(start_pipeline, hsw_lowp),
88 ASM(start_pipeline,sse41_lowp),
89 ASM(start_pipelin
[all...]
/external/libvpx/libvpx/
H A Dlibs.mk15 ASM:=$(if $(filter yes,$(CONFIG_GCC)$(CONFIG_MSVS)),.asm.S,.asm) macro
17 ASM:=.asm macro
371 $(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DAsmWriterEmitter.cpp766 std::pair<StringRef, StringRef> ASM = AsmString.split(' '); local
768 while (!ASM.second.empty()) {
770 ASM = ASM.second.split(' ');
778 std::pair<StringRef, StringRef> ASM = AsmString.split('\t'); local
780 if (!ASM.second.empty()) {
781 size_t I = ASM.second.find('{');
782 StringRef Str = ASM.second;
784 Str = ASM.second.substr(I, ASM
[all...]
/external/icu/icu4c/source/common/
H A Ducnvisci.cpp93 ASM = 0x46, enumerator in enum:__anon7945
280 * | | | | | ASM | KND | | |
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetISCII.java85 static final short ASM = 0x46; field in class:CharsetISCII.ISCIILang
177 * | | | | | ASM | KND | | |
/external/python/cpython3/Modules/_decimal/libmpdec/
H A Dmpdecimal.h137 #define ASM macro
/external/clang/lib/Sema/
H A DSemaType.cpp2074 /// \param ASM C99 array size modifier (e.g., '*', 'static').
2085 QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM, argument
2176 if (ASM == ArrayType::Star)
2177 T = Context.getVariableArrayType(T, nullptr, ASM, Quals, Brackets);
2179 T = Context.getIncompleteArrayType(T, ASM, Quals);
2181 T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
2197 T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
2218 if (ASM == ArrayType::Static) {
2222 ASM = ArrayType::Normal;
2237 T = Context.getConstantArrayType(T, ConstVal, ASM, Qual
3895 ArrayType::ArraySizeModifier ASM; local
[all...]
/external/clang/lib/Serialization/
H A DASTReader.cpp5307 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; local
5312 ASM, IndexTypeQuals);
5317 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; local
5319 return Context.getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
5324 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; local
5329 ASM, IndexTypeQuals,
5631 ArrayType::ArraySizeModifier ASM local
5639 return Context.getDependentSizedArrayType(ElementType, NumElts, ASM,
/external/clang/lib/AST/
H A DASTContext.cpp2574 ArrayType::ArraySizeModifier ASM,
2587 ConstantArrayType::Profile(ID, EltTy, ArySize, ASM, IndexTypeQuals);
2600 ASM, IndexTypeQuals);
2610 ConstantArrayType(EltTy, Canon, ArySize, ASM, IndexTypeQuals);
2753 ArrayType::ArraySizeModifier ASM,
2763 Canon = getVariableArrayType(QualType(canonSplit.Ty, 0), NumElts, ASM,
2769 VariableArrayType(EltTy, Canon, NumElts, ASM, IndexTypeQuals, Brackets);
2781 ArrayType::ArraySizeModifier ASM,
2796 numElements, ASM, elementTypeQuals,
2811 ASM, elementTypeQual
2572 getConstantArrayType(QualType EltTy, const llvm::APInt &ArySizeIn, ArrayType::ArraySizeModifier ASM, unsigned IndexTypeQuals) const argument
2751 getVariableArrayType(QualType EltTy, Expr *NumElts, ArrayType::ArraySizeModifier ASM, unsigned IndexTypeQuals, SourceRange Brackets) const argument
2779 getDependentSizedArrayType(QualType elementType, Expr *numElements, ArrayType::ArraySizeModifier ASM, unsigned elementTypeQuals, SourceRange brackets) const argument
2847 getIncompleteArrayType(QualType elementType, ArrayType::ArraySizeModifier ASM, unsigned elementTypeQuals) const argument
[all...]

Completed in 675 milliseconds