Searched refs:strneq (Results 1 – 7 of 7) sorted by relevance
/external/compiler-rt/make/ |
D | 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))),\
|
D | subdir.mk | 49 $$(if $$(call strneq,UNDEFINED,$$($$(var))), \ 57 $$(if $$(call strneq,UNDEFINED,$$($$(var))),, \ 60 $$(if $$(call strneq,UNDEFINED,$$($$(var))),, \
|
D | util.mk | 16 strneq = $(if $(call streq,$(1),$(2)),,true) 44 IsDefined = $(call strneq,undefined,$(flavor $(1)))
|
D | lib_info.mk | 33 $(if $(call strneq,,$(strip $($(key).OnlyArchs) $($(key).OnlyConfigs))),,\ 38 $(if $(call strneq,,$($(key).OnlyConfigs)),,\
|
/external/compiler-rt/make/test/ |
D | 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/qemu/util/ |
D | path.c | 34 static int strneq(const char *s1, unsigned int n, const char *s2) in strneq() function 128 if (strneq(name, namelen, "..")) in follow_path() 131 if (strneq(name, namelen, ".")) in follow_path() 135 if (strneq(name, namelen, cursor->entries[i]->name)) in follow_path()
|
/external/qemu/disas/ |
D | arm.c | 77 #ifndef strneq 78 #define strneq(a,b,n) (strncmp ((a), (b), (n)) == 0) macro
|