/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...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemTemplateElement.java | 871 XMLNSDecl decl = new XMLNSDecl(prefix, uri, false); local 873 m_declaredPrefixes.add(decl); 927 XMLNSDecl decl = (XMLNSDecl) nsDecls.get(i); local 929 if (prefix.equals(decl.getPrefix())) 930 return decl.getURI(); 990 * Tell if the result namespace decl should be excluded. Should be called before 1048 XMLNSDecl decl = (XMLNSDecl) m_declaredPrefixes.get(i); local 1049 String prefix = decl.getPrefix(); 1050 String uri = decl.getURI(); 1068 decl = new XMLNSDecl(nsAlias.getStylesheetPrefix(), 1101 XMLNSDecl decl = (XMLNSDecl) prefixes.get(i); local 1136 XMLNSDecl decl = (XMLNSDecl) m_prefixTable.get(i); local 1189 XMLNSDecl decl = (XMLNSDecl) m_prefixTable.get(i); local 1238 XMLNSDecl decl = (XMLNSDecl) m_prefixTable.get(i); local [all...] |
/external/libsepol/include/sepol/policydb/ |
avrule_block.h | 32 avrule_decl_t * decl,
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
l-ipo.h | 55 void add_decl_to_current_module_scope (tree decl, void *b);
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
l-ipo.h | 55 void add_decl_to_current_module_scope (tree decl, void *b);
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
l-ipo.h | 55 void add_decl_to_current_module_scope (tree decl, void *b);
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
l-ipo.h | 55 void add_decl_to_current_module_scope (tree decl, void *b);
|
/bionic/libc/arch-x86/string/ |
bcopy.S | 80 decl %edi 81 decl %esi
|
swab.S | 31 decl %ecx 62 decl %ecx
|