Searched refs:isconst (Results 1 – 9 of 9) sorted by relevance
/external/clang/test/CodeGen/ |
D | builtin-assume.c | 5 int isconst(void) __attribute__((const)); 24 __assume(isconst()); in test1() 28 __builtin_assume(isconst()); in test1()
|
/external/clang/test/Sema/ |
D | builtin-assume.c | 5 int isconst(void) __attribute__((const)); 13 __assume(isconst() > 2); in foo() 22 __builtin_assume(isconst() > 2); in foo()
|
/external/vulkan-validation-layers/scripts/ |
D | parameter_validation_generator.py | 499 isconst=True if 'const' in cdecl else False, 593 isconst=True if 'const' in cdecl else False, 743 …andParam(name=name, iscount=True, ispointer=False, isbool=False, israngedenum=False, isconst=False, 1068 …elif value.type in self.handleTypes and value.isconst and not self.isHandleOptional(value, lenPara… 1070 elif value.type in self.flags and value.isconst: 1072 elif value.isbool and value.isconst: 1074 elif value.israngedenum and value.isconst: 1084 if value.type in self.validatedStructs and value.isconst:
|
D | object_tracker_generator.py | 565 isconst=True if 'const' in cdecl else False, 855 isconst = True if 'const' in cdecl else False 860 if (len is not None) and (isconst == True): 872 isconst=isconst,
|
D | unique_objects_generator.py | 392 isconst=True if 'const' in cdecl else False, 795 isconst = True if 'const' in cdecl else False 800 if (len is not None) and (isconst == True): 812 isconst=isconst,
|
D | helper_file_generator.py | 354 isconst=True if 'const' in cdecl else False,
|
/external/toybox/kconfig/ |
D | symbol.c | 647 struct symbol *sym_lookup(const char *name, int isconst) in sym_lookup() argument 668 if ((isconst && symbol->flags & SYMBOL_CONST) || in sym_lookup() 669 (!isconst && !(symbol->flags & SYMBOL_CONST))) in sym_lookup() 683 if (isconst) in sym_lookup()
|
D | lkc_proto.h | 21 P(sym_lookup,struct symbol *,(const char *name, int isconst));
|
/external/llvm/docs/ |
D | BitCodeFormat.rst | 676 ``[GLOBALVAR, pointer type, isconst, initid, linkage, alignment, section, visibility, threadlocal, … 684 * *isconst*: Non-zero if the variable is treated as constant within the module,
|