HomeSort by relevance Sort by last modified time
    Searched refs:decl (Results 26 - 50 of 373) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libsepol/tests/
test-deps.c 143 avrule_decl_t *decl; local
173 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type);
174 CU_ASSERT_FATAL(decl != NULL);
176 CU_ASSERT(decl->enabled == 1);
225 avrule_decl_t *decl; local
252 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type);
253 CU_ASSERT_FATAL(decl != NULL);
256 CU_ASSERT(decl->enabled == 1);
258 CU_ASSERT(decl->enabled == 0);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
svga_dump.py 52 def __init__(self, instance = '', decl = None):
55 self.decl = decl
58 return decl_dumper_t(self._instance, self.decl)
61 class_ = self.decl
62 assert self.decl.class_type in ('struct', 'union')
72 for name, value in self.decl.values:
84 def dump_decl(instance, decl):
85 dumper = decl_dumper_t(instance, decl)
86 algorithm.apply_visitor(dumper, decl)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.py 52 def __init__(self, instance = '', decl = None):
55 self.decl = decl
58 return decl_dumper_t(self._instance, self.decl)
61 class_ = self.decl
62 assert self.decl.class_type in ('struct', 'union')
72 for name, value in self.decl.values:
84 def dump_decl(instance, decl):
85 dumper = decl_dumper_t(instance, decl)
86 algorithm.apply_visitor(dumper, decl)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_pstipple.c 140 struct tgsi_full_declaration *decl)
144 if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
146 for (i = decl->Range.First;
147 i <= decl->Range.Last; i++) {
151 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
152 pctx->maxInput = MAX2(pctx->maxInput, (int) decl->Range.Last);
153 if (decl->Semantic.Name == TGSI_SEMANTIC_POSITION)
154 pctx->wincoordInput = (int) decl->Range.First;
156 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
158 for (i = decl->Range.First
206 struct tgsi_full_declaration decl; local
    [all...]
draw_pipe_aaline.c 153 struct tgsi_full_declaration *decl)
157 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
158 decl->Semantic.Name == TGSI_SEMANTIC_COLOR &&
159 decl->Semantic.Index == 0) {
160 aactx->colorOutput = decl->Range.First;
162 else if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
164 for (i = decl->Range.First;
165 i <= decl->Range.Last; i++) {
169 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
170 if ((int) decl->Range.Last > aactx->maxInput
213 struct tgsi_full_declaration decl; local
    [all...]
draw_pipe_aapoint.c 134 struct tgsi_full_declaration *decl)
138 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
139 decl->Semantic.Name == TGSI_SEMANTIC_COLOR &&
140 decl->Semantic.Index == 0) {
141 aactx->colorOutput = decl->Range.First;
143 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
144 if ((int) decl->Range.Last > aactx->maxInput)
145 aactx->maxInput = decl->Range.Last;
146 if (decl->Semantic.Name == TGSI_SEMANTIC_GENERIC &&
147 (int) decl->Semantic.Index > aactx->maxGeneric)
178 struct tgsi_full_declaration decl; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_pstipple.c 140 struct tgsi_full_declaration *decl)
144 if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
146 for (i = decl->Range.First;
147 i <= decl->Range.Last; i++) {
151 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
152 pctx->maxInput = MAX2(pctx->maxInput, (int) decl->Range.Last);
153 if (decl->Semantic.Name == TGSI_SEMANTIC_POSITION)
154 pctx->wincoordInput = (int) decl->Range.First;
156 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
158 for (i = decl->Range.First
206 struct tgsi_full_declaration decl; local
    [all...]
draw_pipe_aaline.c 153 struct tgsi_full_declaration *decl)
157 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
158 decl->Semantic.Name == TGSI_SEMANTIC_COLOR &&
159 decl->Semantic.Index == 0) {
160 aactx->colorOutput = decl->Range.First;
162 else if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
164 for (i = decl->Range.First;
165 i <= decl->Range.Last; i++) {
169 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
170 if ((int) decl->Range.Last > aactx->maxInput
213 struct tgsi_full_declaration decl; local
    [all...]
draw_pipe_aapoint.c 134 struct tgsi_full_declaration *decl)
138 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
139 decl->Semantic.Name == TGSI_SEMANTIC_COLOR &&
140 decl->Semantic.Index == 0) {
141 aactx->colorOutput = decl->Range.First;
143 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
144 if ((int) decl->Range.Last > aactx->maxInput)
145 aactx->maxInput = decl->Range.Last;
146 if (decl->Semantic.Name == TGSI_SEMANTIC_GENERIC &&
147 (int) decl->Semantic.Index > aactx->maxGeneric)
178 struct tgsi_full_declaration decl; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_transform.h 52 struct tgsi_full_declaration *decl);
75 const struct tgsi_full_declaration *decl);
tgsi_dump.h 67 const struct tgsi_full_declaration *decl );
tgsi_iterate.h 52 struct tgsi_full_declaration *decl );
tgsi_ureg.c 47 struct tgsi_declaration decl; member in union:tgsi_any_token
459 struct const_decl *decl = &ureg->const_decls2D[index2D]; local
463 if (decl->nr_constant_ranges < UREG_MAX_CONSTANT_RANGE) {
464 uint i = decl->nr_constant_ranges++;
466 decl->constant_range[i].first = first;
467 decl->constant_range[i].last = last;
481 struct const_decl *decl = &ureg->const_decls; local
487 for (i = 0; i < decl->nr_constant_ranges; i++) {
488 if (decl->constant_range[i].first <= index &&
489 decl->constant_range[i].last >= index)
1522 struct const_decl *decl = &ureg->const_decls2D[i]; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_transform.h 52 struct tgsi_full_declaration *decl);
75 const struct tgsi_full_declaration *decl);
tgsi_dump.h 67 const struct tgsi_full_declaration *decl );
tgsi_iterate.h 52 struct tgsi_full_declaration *decl );
tgsi_ureg.c 47 struct tgsi_declaration decl; member in union:tgsi_any_token
459 struct const_decl *decl = &ureg->const_decls2D[index2D]; local
463 if (decl->nr_constant_ranges < UREG_MAX_CONSTANT_RANGE) {
464 uint i = decl->nr_constant_ranges++;
466 decl->constant_range[i].first = first;
467 decl->constant_range[i].last = last;
481 struct const_decl *decl = &ureg->const_decls; local
487 for (i = 0; i < decl->nr_constant_ranges; i++) {
488 if (decl->constant_range[i].first <= index &&
489 decl->constant_range[i].last >= index)
1522 struct const_decl *decl = &ureg->const_decls2D[i]; local
    [all...]