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

  /external/compiler-rt/make/test/
test-util.mk 18 strneq_t7 = $(call strneq,,)
20 strneq_t8 = $(call strneq,b,)
22 strneq_t9 = $(call strneq,,b)
24 strneq_t10 = $(call strneq,b,b)
26 strneq_t11 = $(call strneq,bb,b)
28 strneq_t12 = $(call strneq,b,bb)
30 strneq_t13 = $(call strneq,bb,bb)
  /external/compiler-rt/make/
lib_platforms.mk 42 $$(if $$(call strneq,UNDEFINED,$$($$(var))),, \
46 $$(if $$(and $$(call strneq,UNDEFINED,$$(UniversalArchs)),\
47 $$(call strneq,UNDEFINED,$$(Arch))),\
49 $$(if $$(or $$(call strneq,UNDEFINED,$$(UniversalArchs)),\
50 $$(call strneq,UNDEFINED,$$(Arch))),,\
55 $$(if $$(call strneq,UNDEFINED,$$($$(var))),\
59 $$(if $$(call strneq,UNDEFINED,$$($$(var).$$(config))),\
62 $$(if $$(call strneq,UNDEFINED,$$($$(var).$$(arch))),\
66 $$(if $$(call strneq,UNDEFINED,$$($$(var).$$(config).$$(arch))),\
subdir.mk 49 $$(if $$(call strneq,UNDEFINED,$$($$(var))), \
57 $$(if $$(call strneq,UNDEFINED,$$($$(var))),, \
60 $$(if $$(call strneq,UNDEFINED,$$($$(var))),, \
lib_info.mk 33 $(if $(call strneq,,$(strip $($(key).OnlyArchs) $($(key).OnlyConfigs))),,\
38 $(if $(call strneq,,$($(key).OnlyConfigs)),,\
util.mk 13 # Function: strneq LHS RHS
16 strneq = $(if $(call streq,$(1),$(2)),,true) macro
44 IsDefined = $(call strneq,undefined,$(flavor $(1)))
  /external/qemu/util/
path.c 34 static int strneq(const char *s1, unsigned int n, const char *s2) function
128 if (strneq(name, namelen, ".."))
131 if (strneq(name, namelen, "."))
135 if (strneq(name, namelen, cursor->entries[i]->name))
  /ndk/sources/host-tools/make-3.81/
arscan.c 729 return strneq (name, mem, sizeof(hdr.ar_name) - 1);
731 return strneq (name, mem, sizeof(hdr.ar_name) - 2);
read.c 585 #define word1eq(s) (len == sizeof(s)-1 && strneq (s, p, sizeof(s)-1))
668 if (strneq (p2, "define", 6)
997 !strneq(line, " ", 8) ? ""
    [all...]
implicit.c 381 && !strneq (target, lastslash + 1, stem - lastslash - 1))
385 && !strneq (target, filename, stem - filename))
vpath.c 327 if (strneq (*gp, file, len) && (*gp)[len] == '\0')
main.c 1144 if (!unix_path && strneq(envp[i], "PATH=", 5))
    [all...]
commands.c 102 if (len > slen && strneq (dep_name (d), name + (len - slen), slen))
function.c 208 || !strneq (t + 1, pattern + 1, pattern_prepercent_len - 1)))
215 || !strneq (&t[len - pattern_postpercent_len],
303 || !strneq (pattern, str, percent - pattern))
1029 && strneq (pp->str, wp->str, wp->length));
    [all...]
make.h 324 #define strneq(a, b, l) (strncmp ((a), (b), (l)) == 0) macro
variable.c 87 if (stem > target && !strneq (p->target, target, stem - target))
    [all...]
job.c     [all...]
  /external/qemu/disas/
arm.c 77 #ifndef strneq
78 #define strneq(a,b,n) (strncmp ((a), (b), (n)) == 0) macro
    [all...]

Completed in 177 milliseconds