HomeSort by relevance Sort by last modified time
    Searched refs:decoration (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/deqp-deps/SPIRV-Tools/source/val/
validate_builtins.cpp 50 // (member index is taken from decoration).
59 const Decoration& decoration,
62 if (decoration.struct_member_index() != Decoration::kInvalidMember) {
64 *underlying_type = inst.word(decoration.struct_member_index() + 2);
79 << " is decorated with BuiltIn. BuiltIn decoration should only be "
115 // Goes through all decorations in the module, if decoration is BuiltIn
119 // Validates the instruction defining an id with built-in decoration.
122 spv_result_t ValidateSingleBuiltInAtDefinition(const Decoration& decoration
    [all...]
validate_decorations.cpp 49 // A functor for hashing decoration types.
72 for (auto& decoration : vstate.id_decorations(array_id)) {
73 if (SpvDecorationArrayStride == decoration.dec_type()) {
74 return decoration.params()[0];
80 // Returns true if the given variable has a BuiltIn decoration.
85 [](const Decoration& d) { return SpvDecorationBuiltIn == d.dec_type(); });
89 // decoration.
93 decorations.begin(), decorations.end(), [](const Decoration& d) {
95 Decoration::kInvalidMember != d.struct_member_index();
99 // Returns true if the given ID has the Import LinkageAttributes decoration
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
validate_builtins.cpp 50 // (member index is taken from decoration).
59 const Decoration& decoration,
62 if (decoration.struct_member_index() != Decoration::kInvalidMember) {
64 *underlying_type = inst.word(decoration.struct_member_index() + 2);
79 << " is decorated with BuiltIn. BuiltIn decoration should only be "
115 // Goes through all decorations in the module, if decoration is BuiltIn
119 // Validates the instruction defining an id with built-in decoration.
122 spv_result_t ValidateSingleBuiltInAtDefinition(const Decoration& decoration
    [all...]
validate_decorations.cpp 49 // A functor for hashing decoration types.
72 for (auto& decoration : vstate.id_decorations(array_id)) {
73 if (SpvDecorationArrayStride == decoration.dec_type()) {
74 return decoration.params()[0];
80 // Returns true if the given variable has a BuiltIn decoration.
85 [](const Decoration& d) { return SpvDecorationBuiltIn == d.dec_type(); });
89 // decoration.
93 decorations.begin(), decorations.end(), [](const Decoration& d) {
95 Decoration::kInvalidMember != d.struct_member_index();
99 // Returns true if the given ID has the Import LinkageAttributes decoration
    [all...]
  /external/u-boot/test/py/
multiplexed_log.css 41 text-decoration: underline;
97 text-decoration: inherit;
102 text-decoration: inherit;
107 text-decoration: underline;
  /external/swiftshader/third_party/LLVM/docs/CommandGuide/html/
manpage.css 14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
34 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
38 font-family: Arial,Helvetica; font-weight: normal; text-decoration: none;
42 .slink2 { font-family: Arial,Helvetica; text-decoration: none; color: #336699; }
45 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
49 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
    [all...]
  /external/swiftshader/third_party/LLVM/docs/CommandGuide/
manpage.css 14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
34 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
38 font-family: Arial,Helvetica; font-weight: normal; text-decoration: none;
42 .slink2 { font-family: Arial,Helvetica; text-decoration: none; color: #336699; }
45 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
49 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
    [all...]
  /external/deqp-deps/glslang/SPIRV/
SpvPostProcess.cpp 227 const auto function = [&](const std::unique_ptr<Instruction>& decoration) {
228 if (decoration.get()->getOpCode() == OpMemberDecorate &&
229 decoration.get()->getIdOperand(0) == typeId &&
230 decoration.get()->getImmediateOperand(1) == c &&
231 (decoration.get()->getImmediateOperand(2) == DecorationOffset ||
232 decoration.get()->getImmediateOperand(2) == DecorationMatrixStride)) {
233 alignment |= decoration.get()->getImmediateOperand(3);
242 const auto function = [&](const std::unique_ptr<Instruction>& decoration) {
243 if (decoration.get()->getOpCode() == OpDecorate &&
244 decoration.get()->getIdOperand(0) == typeId &
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/opt/
decoration_manager.h 33 // Constructs a decoration manager from the given |module|
46 // If decoration groups become empty, the |OpGroupDecorate| and
49 // Decoration instructions that apply directly to |id| will be killed.
51 // If |id| is a decoration group and all of the group's decorations are
67 // decoration instruction. If |include_linkage| is not set, linkage
86 // |f| is run on each decoration instruction for |id| with decoration
87 // |decoration|. Processed are all decorations which target |id| either
88 // directly or indirectly by Decoration Groups.
89 void ForEachDecoration(uint32_t id, uint32_t decoration,
    [all...]
decoration_manager.cpp 58 "Unknown decoration group");
60 for (Instruction* decoration : group_decorations) {
61 if (!pred(*decoration)) group_decorations_to_keep.push_back(decoration);
67 // correctly when a decoration group has no decorations.
110 for (Instruction* decoration : group_decorations_to_keep) {
111 // simply clone decoration and change |group_id| to |id|
113 decoration->Clone(module_->context()));
169 // This function splits the decoration instructions into different sets,
259 // For each group and instruction, collect all their decoration instructions
    [all...]
combine_access_chains.cpp 76 [&array_stride](const Instruction& decoration) {
77 assert(decoration.opcode() != SpvOpDecorateId);
78 if (decoration.opcode() == SpvOpDecorate) {
79 array_stride = decoration.GetSingleWordInOperand(1);
81 array_stride = decoration.GetSingleWordInOperand(2);
upgrade_memory_model.h 75 // Return true if |inst| is decorated with |decoration|.
80 SpvDecoration decoration);
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
decoration_manager.h 33 // Constructs a decoration manager from the given |module|
46 // If decoration groups become empty, the |OpGroupDecorate| and
49 // Decoration instructions that apply directly to |id| will be killed.
51 // If |id| is a decoration group and all of the group's decorations are
67 // decoration instruction. If |include_linkage| is not set, linkage
86 // |f| is run on each decoration instruction for |id| with decoration
87 // |decoration|. Processed are all decorations which target |id| either
88 // directly or indirectly by Decoration Groups.
89 void ForEachDecoration(uint32_t id, uint32_t decoration,
    [all...]
decoration_manager.cpp 58 "Unknown decoration group");
60 for (Instruction* decoration : group_decorations) {
61 if (!pred(*decoration)) group_decorations_to_keep.push_back(decoration);
67 // correctly when a decoration group has no decorations.
110 for (Instruction* decoration : group_decorations_to_keep) {
111 // simply clone decoration and change |group_id| to |id|
113 decoration->Clone(module_->context()));
169 // This function splits the decoration instructions into different sets,
259 // For each group and instruction, collect all their decoration instructions
    [all...]
combine_access_chains.cpp 76 [&array_stride](const Instruction& decoration) {
77 assert(decoration.opcode() != SpvOpDecorateId);
78 if (decoration.opcode() == SpvOpDecorate) {
79 array_stride = decoration.GetSingleWordInOperand(1);
81 array_stride = decoration.GetSingleWordInOperand(2);
upgrade_memory_model.h 75 // Return true if |inst| is decorated with |decoration|.
80 SpvDecoration decoration);
  /external/clang/www/analyzer/
menu.css 14 text-decoration: none;
17 text-decoration: underline;
  /external/bzip2/
bzip.css 60 table.nav a { text-decoration: none; }
61 table.nav a:hover { text-decoration: underline; }
  /external/libjpeg-turbo/doc/html/search/
search.css 127 text-decoration: none;
134 text-decoration: none;
143 text-decoration: none;
150 text-decoration: none;
204 text-decoration: none;
212 text-decoration: none;
218 text-decoration: underline;
257 text-decoration: none;
  /external/tinyxml2/docs/search/
search.css 126 text-decoration: none;
133 text-decoration: none;
142 text-decoration: none;
149 text-decoration: none;
204 text-decoration: none;
212 text-decoration: none;
218 text-decoration: underline;
257 text-decoration: none;
  /external/icu/icu4c/
icu4c.css 77 text-decoration: none;
83 text-decoration: underline;
96 text-decoration: none;
102 text-decoration: underline;
114 text-decoration: none;
120 text-decoration: underline;
172 text-decoration: none;
185 text-decoration: none;
202 text-decoration: underline;
234 text-decoration: none
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
main.css 62 text-decoration: line-through;
  /external/python/httplib2/doc/html/_static/
default.css 48 text-decoration: underline;
114 text-decoration: none;
118 text-decoration: underline;
152 text-decoration: none;
  /external/ImageMagick/www/api/MagickCore/
tabs.css 37 text-decoration : none;
71 text-decoration : none;
  /external/ImageMagick/www/api/MagickWand/
tabs.css 37 text-decoration : none;
71 text-decoration : none;

Completed in 2296 milliseconds

1 2 3 4 5 6