HomeSort by relevance Sort by last modified time
    Searched refs:isconst (Results 1 - 14 of 14) sorted by null

  /external/clang/test/CodeGen/
builtin-assume.c 5 int isconst(void) __attribute__((const));
15 // CHECK: [[CALL:%.+]] = call i32 @isconst()
24 __assume(isconst());
28 __builtin_assume(isconst());
  /external/clang/test/Sema/
builtin-assume.c 5 int isconst(void) __attribute__((const));
13 __assume(isconst() > 2);
22 __builtin_assume(isconst() > 2);
  /prebuilts/go/darwin-x86/test/
slice3.go 42 parse := func(s string) (n int, isconst bool) {
46 isconst = true
48 isconst = false
52 return n, isconst
  /prebuilts/go/linux-x86/test/
slice3.go 42 parse := func(s string) (n int, isconst bool) {
46 isconst = true
48 isconst = false
52 return n, isconst
  /external/toybox/kconfig/
lkc_proto.h 21 P(sym_lookup,struct symbol *,(const char *name, int isconst));
symbol.c 647 struct symbol *sym_lookup(const char *name, int isconst)
668 if ((isconst && symbol->flags & SYMBOL_CONST) ||
669 (!isconst && !(symbol->flags & SYMBOL_CONST)))
683 if (isconst)
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/
parameter_validation_generator.py 156 'isconst', 'isoptional', 'iscount', 'noautovalidity', 'len', 'extstructs',
359 isconst=True if 'const' in cdecl else False,
426 isconst=True if 'const' in cdecl else False,
571 lenParam = self.CommandParam(name=name, iscount=True, ispointer=False, isbool=False, israngedenum=False, isconst=False,
    [all...]
unique_objects_generator.py 165 self.CommandParam = namedtuple('CommandParam', ['type', 'name', 'ispointer', 'isconst', 'iscount', 'len', 'extstructs', 'cdecl', 'islocal', 'iscreate', 'isdestroy'])
356 isconst=True if 'const' in cdecl else False,
    [all...]
  /external/vulkan-validation-layers/scripts/
object_tracker_generator.py 235 self.CommandParam = namedtuple('CommandParam', ['type', 'name', 'ispointer', 'isconst', 'isoptional', 'iscount', 'len', 'extstructs', 'cdecl', 'islocal', 'iscreate', 'isdestroy', 'feature_protect'])
565 isconst=True if 'const' in cdecl else False,
    [all...]
unique_objects_generator.py 186 self.CommandParam = namedtuple('CommandParam', ['type', 'name', 'ispointer', 'isconst', 'iscount', 'len', 'extstructs', 'cdecl', 'islocal', 'iscreate', 'isdestroy', 'feature_protect'])
392 isconst=True if 'const' in cdecl else False,
    [all...]
parameter_validation_generator.py 189 'isconst', 'isoptional', 'iscount', 'noautovalidity', 'len', 'extstructs',
499 isconst=True if 'const' in cdecl else False,
593 isconst=True if 'const' in cdecl else False,
    [all...]
helper_file_generator.py 94 self.CommandParam = namedtuple('CommandParam', ['type', 'name', 'ispointer', 'isstaticarray', 'isconst', 'iscount', 'len', 'extstructs', 'cdecl'])
354 isconst=True if 'const' in cdecl else False,
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
swt.go 43 // isconst indicates whether this case clause is a constant,
47 isconst bool
243 if Isconst(cond, CTBOOL) {
277 if okforcmp[t.Etype] && cc[0].isconst {
279 for ; run < len(cc) && cc[run].isconst; run++ {
348 if Isconst(mid, CTSTR) {
416 for run = j; run < len(s) && Isconst(s[run], CTINT); run++ {
444 for ; j < len(s) && (j < run || !Isconst(s[j], CTINT)); j++ {
500 c.isconst = true
504 c.isconst = tru
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
swt.go 43 // isconst indicates whether this case clause is a constant,
47 isconst bool
243 if Isconst(cond, CTBOOL) {
277 if okforcmp[t.Etype] && cc[0].isconst {
279 for ; run < len(cc) && cc[run].isconst; run++ {
348 if Isconst(mid, CTSTR) {
416 for run = j; run < len(s) && Isconst(s[run], CTINT); run++ {
444 for ; j < len(s) && (j < run || !Isconst(s[j], CTINT)); j++ {
500 c.isconst = true
504 c.isconst = tru
    [all...]

Completed in 419 milliseconds