HomeSort by: relevance | last modified time | path
    Searched refs:SCL (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/
ProfileList.cpp 67 : SCL(ProfileSpecialCaseList::createOrDie(
69 Empty(SCL->isEmpty()),
70 Default(SCL->hasPrefix("fun") || SCL->hasPrefix("src")), SM(SM) {}
92 if (SCL->inSection(Section, "!fun", FunctionName))
94 if (SCL->inSection(Section, "fun", FunctionName))
109 if (SCL->inSection(Section, "!src", FileName))
111 if (SCL->inSection(Section, "src", FileName))
  /src/sys/dev/i2c/
i2c_bitbang.c 56 #define SCL ops->ibo_bits[I2C_BIT_SCL] /* i2c signal */
71 while (((READ & SCL) == 0) && (bail < SCL_BAIL_COUNT)) {
87 /* start condition: put SDA H->L edge during SCL=H */
90 SETBITS(SDA | SCL);
92 SETBITS( 0 | SCL);
97 /* leave SCL=L and SDA=L to avoid unexpected start/stop condition */
108 /* stop condition: put SDA L->H edge during SCL=H */
110 /* assume SCL=L, SDA=L here */
112 SETBITS( 0 | SCL);
114 SETBITS(SDA | SCL);
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
amdgpu_dce_i2c_sw.c 36 #define SCL false
92 if (read_bit_from_ddc(ddc, SCL))
120 write_bit_to_ddc(ddc_handle, SCL, true);
125 write_bit_to_ddc(ddc_handle, SCL, false);
131 * after the SCL pulse we use to send our last data bit.
141 write_bit_to_ddc(ddc_handle, SCL, true);
152 write_bit_to_ddc(ddc_handle, SCL, false);
171 * bit is read while SCL is high
175 write_bit_to_ddc(ddc_handle, SCL, true);
183 write_bit_to_ddc(ddc_handle, SCL, false)
    [all...]
dce_transform.h 78 SRI(SCL_MODE, SCL, id), \
79 SRI(SCL_TAP_CONTROL, SCL, id), \
80 SRI(SCL_CONTROL, SCL, id), \
81 SRI(SCL_BYPASS_CONTROL, SCL, id), \
82 SRI(EXT_OVERSCAN_LEFT_RIGHT, SCL, id), \
83 SRI(EXT_OVERSCAN_TOP_BOTTOM, SCL, id), \
84 SRI(SCL_VERT_FILTER_CONTROL, SCL, id), \
85 SRI(SCL_HORZ_FILTER_CONTROL, SCL, id), \
86 SRI(SCL_COEF_RAM_SELECT, SCL, id), \
87 SRI(SCL_COEF_RAM_TAP_DATA, SCL, id),
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SpecialCaseList.cpp 76 std::unique_ptr<SpecialCaseList> SCL(new SpecialCaseList());
77 if (SCL->createInternal(Paths, FS, Error))
78 return SCL;
84 std::unique_ptr<SpecialCaseList> SCL(new SpecialCaseList());
85 if (SCL->createInternal(MB, Error))
86 return SCL;
94 if (auto SCL = create(Paths, FS, Error))
95 return SCL;
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
ProfileList.h 33 std::unique_ptr<ProfileSpecialCaseList> SCL;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/
ddc_regs.h 173 DDC_I2C_REG_LIST(SCL)\
192 DDC_REG_LIST_DCN2(SCL)\
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 279 std::unique_ptr<SpecialCaseList> SCL;
284 void set(std::unique_ptr<SpecialCaseList> List) { SCL = std::move(List); }
290 SCL->inSection("dataflow", "fun", F.getName(), Category);
302 return SCL->inSection("dataflow", "fun", GA.getName(), Category);
304 return SCL->inSection("dataflow", "global", GA.getName(), Category) ||
305 SCL->inSection("dataflow", "type", getGlobalTypeString(GA),
311 return SCL->inSection("dataflow", "src", M.getModuleIdentifier(), Category);
  /src/external/apache2/llvm/dist/clang/lib/Driver/
SanitizerArgs.cpp 130 std::unique_ptr<llvm::SpecialCaseList> SCL(
132 if (!SCL.get())

Completed in 31 milliseconds