Home
last modified time | relevance | path

Searched refs:SCL (Results 1 – 25 of 29) sorted by relevance

12

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DSpecialCaseListTest.cpp29 auto SCL = makeSpecialCaseList(List, Error); in makeSpecialCaseList() local
30 assert(SCL); in makeSpecialCaseList()
32 return SCL; in makeSpecialCaseList()
47 std::unique_ptr<SpecialCaseList> SCL = in TEST_F() local
54 EXPECT_TRUE(SCL->inSection("", "src", "hello")); in TEST_F()
55 EXPECT_TRUE(SCL->inSection("", "src", "bye")); in TEST_F()
56 EXPECT_TRUE(SCL->inSection("", "src", "hi", "category")); in TEST_F()
57 EXPECT_TRUE(SCL->inSection("", "src", "zzzz", "category")); in TEST_F()
58 EXPECT_FALSE(SCL->inSection("", "src", "hi")); in TEST_F()
59 EXPECT_FALSE(SCL->inSection("", "fun", "hello")); in TEST_F()
[all …]
/external/llvm/unittests/Support/
DSpecialCaseListTest.cpp29 auto SCL = makeSpecialCaseList(List, Error); in makeSpecialCaseList() local
30 assert(SCL); in makeSpecialCaseList()
32 return SCL; in makeSpecialCaseList()
47 std::unique_ptr<SpecialCaseList> SCL = in TEST_F() local
54 EXPECT_TRUE(SCL->inSection("src", "hello")); in TEST_F()
55 EXPECT_TRUE(SCL->inSection("src", "bye")); in TEST_F()
56 EXPECT_TRUE(SCL->inSection("src", "hi", "category")); in TEST_F()
57 EXPECT_TRUE(SCL->inSection("src", "zzzz", "category")); in TEST_F()
58 EXPECT_FALSE(SCL->inSection("src", "hi")); in TEST_F()
59 EXPECT_FALSE(SCL->inSection("fun", "hello")); in TEST_F()
[all …]
/external/llvm/lib/Support/
DSpecialCaseList.cpp52 std::unique_ptr<SpecialCaseList> SCL(new SpecialCaseList()); in create() local
61 if (!SCL->parse(FileOrErr.get().get(), ParseError)) { in create()
66 SCL->compile(); in create()
67 return SCL; in create()
72 std::unique_ptr<SpecialCaseList> SCL(new SpecialCaseList()); in create() local
73 if (!SCL->parse(MB, Error)) in create()
75 SCL->compile(); in create()
76 return SCL; in create()
82 if (auto SCL = create(Paths, Error)) in createOrDie() local
83 return SCL; in createOrDie()
/external/clang/lib/Basic/
DSanitizerBlacklist.cpp20 : SCL(llvm::SpecialCaseList::createOrDie(BlacklistPaths)), SM(SM) {} in SanitizerBlacklist()
24 return SCL->inSection("global", GlobalName, Category); in isBlacklistedGlobal()
29 return SCL->inSection("type", MangledTypeName, Category); in isBlacklistedType()
33 return SCL->inSection("fun", FunctionName); in isBlacklistedFunction()
38 return SCL->inSection("src", FileName, Category); in isBlacklistedFile()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DSpecialCaseList.cpp76 std::unique_ptr<SpecialCaseList> SCL(new SpecialCaseList()); in create() local
77 if (SCL->createInternal(Paths, Error)) in create()
78 return SCL; in create()
84 std::unique_ptr<SpecialCaseList> SCL(new SpecialCaseList()); in create() local
85 if (SCL->createInternal(MB, Error)) in create()
86 return SCL; in create()
93 if (auto SCL = create(Paths, Error)) in createOrDie() local
94 return SCL; in createOrDie()
/external/u-boot/arch/arm/dts/
Dtegra30-apalis.dts66 * GEN1_I2C: I2C1_SDA/SCL on MXM3 pin 209/211 (e.g. RTC on carrier
77 * CAM_I2C: I2C3_SDA/SCL on MXM3 pin 201/203 (e.g. camera sensor on
85 /* DDC: I2C2_SDA/SCL on MXM3 pin 205/207 (e.g. display EDID) */
Dtegra30-colibri.dts31 * GEN1_I2C: I2C_SDA/SCL on SODIMM pin 194/196 (e.g. RTC on carrier
Dtegra20-colibri.dts62 * GEN1_I2C: I2C_SDA/SCL on SODIMM pin 194/196 (e.g. RTC on carrier
Dr8a7790-lager.dts297 * IIC0/I2C0 is routed to EXIO connector A, pins 114 (SCL) + 116 (SDA) only.
301 * bus with IIC3 on pins 110 (SCL) + 112 (SDA), select I2C0 at runtime, and
316 * IIC1/I2C1 is routed to EXIO connector A, pins 78 (SCL) + 80 (SDA).
Dmeson-gxl-s905x-khadas-vim.dts137 "HDMI HPD", "HDMI SDA", "HDMI SCL",
Dr8a7791-koelsch.dts342 * I2C1 is routed to EXIO connector B, pins 64 (SCL) + 66 (SDA).
451 * I2C4 is routed to EXIO connector E, pins 37 (SCL) + 39 (SDA).
Dmeson-gxl-s905x-libretech-cc.dts187 "HDMI HPD", "HDMI SDA", "HDMI SCL",
Dr8a7794-alt.dts184 * I2C4 is routed to EXIO connector B, pins 73 (SCL) + 74 (SDA).
Dmeson-gxbb-odroidc2.dts208 "HDMI HPD", "HDMI DDC SDA", "HDMI DDC SCL", "",
Dr8a7793-gose.dts430 * I2C4 is routed to EXIO connector E, pins 37 (SCL) + 39 (SDA).
Dtegra124-apalis.dts1614 * GEN1_I2C: I2C1_SDA/SCL on MXM3 pin 209/211 (e.g. RTC on carrier
1634 * GEN2_I2C: I2C2_SDA/SCL (DDC) on MXM3 pin 205/207 (e.g. display EDID)
1642 * CAM_I2C: I2C3_SDA/SCL (CAM) on MXM3 pin 201/203 (e.g. camera sensor
/external/clang/include/clang/Basic/
DSanitizerBlacklist.h27 std::unique_ptr<llvm::SpecialCaseList> SCL; variable
/external/u-boot/doc/device-tree-bindings/i2c/
Di2c.txt40 <&gpio1 27 GPIO_ACTIVE_LOW>; /* SCL */
/external/llvm/lib/Transforms/Instrumentation/
DDataFlowSanitizer.cpp147 std::unique_ptr<SpecialCaseList> SCL; member in __anon896e6cc70111::DFSanABIList
152 void set(std::unique_ptr<SpecialCaseList> List) { SCL = std::move(List); } in set()
158 SCL->inSection("fun", F.getName(), Category); in isIn()
170 return SCL->inSection("fun", GA.getName(), Category); in isIn()
172 return SCL->inSection("global", GA.getName(), Category) || in isIn()
173 SCL->inSection("type", GetGlobalTypeString(GA), Category); in isIn()
178 return SCL->inSection("src", M.getModuleIdentifier(), Category); in isIn()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DDataFlowSanitizer.cpp178 std::unique_ptr<SpecialCaseList> SCL; member in __anon585f4c1f0111::DFSanABIList
183 void set(std::unique_ptr<SpecialCaseList> List) { SCL = std::move(List); } in set()
189 SCL->inSection("dataflow", "fun", F.getName(), Category); in isIn()
201 return SCL->inSection("dataflow", "fun", GA.getName(), Category); in isIn()
203 return SCL->inSection("dataflow", "global", GA.getName(), Category) || in isIn()
204 SCL->inSection("dataflow", "type", GetGlobalTypeString(GA), in isIn()
210 return SCL->inSection("dataflow", "src", M.getModuleIdentifier(), Category); in isIn()
/external/clang/lib/Driver/
DSanitizerArgs.cpp406 std::unique_ptr<llvm::SpecialCaseList> SCL( in SanitizerArgs() local
408 if (!SCL.get()) in SanitizerArgs()
/external/ImageMagick/coders/
Dwpg.c692 const unsigned char TPR=1,TRN=2,SKW=4,SCL=8,ROT=0x10,OID=0x20,LCK=0x80; in LoadWPG2Flags() local
716 if(Flags & (ROT|SCL)) in LoadWPG2Flags()
/external/u-boot/arch/arm/mach-sunxi/
DKconfig845 string "LCD panel i2c interface SCL pin"
849 Set the SCL pin for the LCD i2c interface. This takes a string in the
/external/ImageMagick/Magick++/demo/
Dmodel.miff65 …abhihk�kkhk{kh�kbaa�����ǟ��t{��u�utgRcRRRLNNU\fV]USK@ELUgtgfTLR\~`rUPS]SCL\q�SSFK2cheHGHGDEHHe…
/external/walt/hardware/kicad/
DWALTsm.kicad_pcb1012 (gr_text "SCL A5" (at 103.124 104.394) (layer B.SilkS)
1063 (gr_text "A5 SCL" (at 103.124 104.394) (layer F.SilkS)

12