HomeSort by: relevance | last modified time | path
    Searched refs:strcmp (Results 1 - 25 of 7554) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/gcc/config/
winnt-c.cc 29 return !strcmp(ident, "wmain")
30 || !strcmp(ident, "DllMain")
31 || !strcmp(ident, "WinMain")
32 || !strcmp(ident, "wWinMain");
  /src/external/gpl3/gcc.old/dist/gcc/config/
winnt-c.cc 29 return !strcmp(ident, "wmain")
30 || !strcmp(ident, "DllMain")
31 || !strcmp(ident, "WinMain")
32 || !strcmp(ident, "wWinMain");
  /src/lib/libc/string/
Lint_strcmp.c 12 strcmp(const char *s1, const char *s2) function
  /src/crypto/external/apache2/openssl/lib/libcrypto/
params_idx.c 29 if (strcmp("vp-info", s + 2) == 0)
37 if (strcmp("itional-random", s + 3) == 0)
45 if (strcmp("ad", s + 2) == 0)
57 if (strcmp("id_param", s + 4) == 0)
61 if (strcmp("d-absent", s + 4) == 0)
101 if (strcmp("params", s + 13) == 0)
118 if (strcmp("as", s + 3) == 0)
131 if (strcmp("sis-type", s + 2) == 0)
135 if (strcmp("ts", s + 2) == 0)
155 if (strcmp("size", s + 6) == 0
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
rec_attr_map.c 43 if (strcmp(attr_name, MAIL_ATTR_DSN_ORCPT) == 0) {
45 } else if (strcmp(attr_name, MAIL_ATTR_DSN_NOTIFY) == 0) {
47 } else if (strcmp(attr_name, MAIL_ATTR_DSN_ENVID) == 0) {
49 } else if (strcmp(attr_name, MAIL_ATTR_DSN_RET) == 0) {
51 } else if (strcmp(attr_name, MAIL_ATTR_CREATE_TIME) == 0) {
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/test/
srp-test-runner.c 44 if (!strcmp(test_to_run, "change-text-record")) {
46 } else if (!strcmp(test_to_run, "multi-host-record")) {
48 } else if (!strcmp(test_to_run, "lease-expiry")) {
50 } else if (!strcmp(test_to_run, "lease-renewal")) {
52 } else if (!strcmp(test_to_run, "single-srpl-update")) {
54 } else if (!strcmp(test_to_run, "srpl-two-instances-dup")) {
56 } else if (!strcmp(test_to_run, "srpl-two-instances-dup-first")) {
58 } else if (!strcmp(test_to_run, "srpl-two-instances-dup-last")) {
60 } else if (!strcmp(test_to_run, "srpl-two-instances-dup-add-first")) {
62 } else if (!strcmp(test_to_run, "srpl-two-instances-dup-add-last"))
    [all...]
  /src/external/cddl/osnet/sys/kern/
vfs.c 67 if (strcmp("ro", name) == 0)
70 if (strcmp("rw", name) == 0)
73 if (strcmp("nodevices", name) == 0)
76 if (strcmp("noatime", name) == 0)
79 if (strcmp("atime", name) == 0)
82 if (strcmp("nosuid", name) == 0)
85 if (strcmp("suid", name) == 0)
88 if (strcmp("noexec", name) == 0)
91 if (strcmp("exec", name) == 0)
101 if (strcmp("ro", name) == 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
main.c 65 if (argc == 2 && !strcmp(argv[1], "--lazy-new-module-dump")) {
67 } else if (argc == 2 && !strcmp(argv[1], "--new-module-dump")) {
69 } else if (argc == 2 && !strcmp(argv[1], "--lazy-module-dump")) {
71 } else if (argc == 2 && !strcmp(argv[1], "--module-dump")) {
73 } else if (argc == 2 && !strcmp(argv[1], "--module-list-functions")) {
75 } else if (argc == 2 && !strcmp(argv[1], "--module-list-globals")) {
77 } else if (argc == 2 && !strcmp(argv[1], "--targets-list")) {
79 } else if (argc == 2 && !strcmp(argv[1], "--object-list-sections")) {
81 } else if (argc == 2 && !strcmp(argv[1], "--object-list-symbols")) {
83 } else if (argc == 2 && !strcmp(argv[1], "--disassemble"))
    [all...]
  /src/external/bsd/ipf/dist/lib/
printifname.c 20 if ((ifp == NULL) && strcmp(name, "-") && strcmp(name, "*"))
  /src/external/gpl3/gdb/dist/gnulib/import/
hard-locale.c 34 return !(strcmp (locale, "C") == 0 || strcmp (locale, "POSIX") == 0);
  /src/external/gpl3/gdb.old/dist/gnulib/import/
hard-locale.c 34 return !(strcmp (locale, "C") == 0 || strcmp (locale, "POSIX") == 0);
  /src/external/bsd/pam-u2f/dist/tests/
get_devices.c 63 assert(strcmp(dev[0].coseType, "es256") == 0);
64 assert(strcmp(dev[0].attributes, "+presence") == 0);
65 assert(strcmp(dev[0].keyHandle,
68 assert(strcmp(dev[0].publicKey,
93 assert(strcmp(dev[0].coseType, "es256") == 0);
94 assert(strcmp(dev[0].attributes, "+presence") == 0);
95 assert(strcmp(dev[0].keyHandle,
99 strcmp(dev[0].publicKey,
126 assert(strcmp(dev[0].coseType, "eddsa") == 0);
127 assert(strcmp(dev[0].keyHandle
    [all...]
  /src/tests/lib/libc/string/
t_strcmp.c 17 atf_tc_set_md_var(tc, "descr", "Test strcmp(3) results, #1");
23 int (*f)(const char *, const char *s) = strcmp;
103 atf_tc_set_md_var(tc, "descr", "Test strcmp(3) results, #2");
111 ATF_CHECK(strcmp(buf1, buf1) == 0);
112 ATF_CHECK(strcmp(buf2, buf2) == 0);
114 ATF_CHECK(strcmp("x\xf6x", "xox") > 0);
115 ATF_CHECK(strcmp("xxx", "xxxyyy") < 0);
116 ATF_CHECK(strcmp("xxxyyy", "xxx") > 0);
118 ATF_CHECK(strcmp(buf1 + 0, buf2 + 0) < 0);
119 ATF_CHECK(strcmp(buf1 + 1, buf2 + 1) < 0)
    [all...]
  /src/usr.bin/xlint/lint1/
ckctype.c 63 return strcmp(name, "isalnum") == 0 ||
64 strcmp(name, "isalpha") == 0 ||
65 strcmp(name, "isblank") == 0 ||
66 strcmp(name, "iscntrl") == 0 ||
67 strcmp(name, "isdigit") == 0 ||
68 strcmp(name, "isgraph") == 0 ||
69 strcmp(name, "islower") == 0 ||
70 strcmp(name, "isprint") == 0 ||
71 strcmp(name, "ispunct") == 0 ||
72 strcmp(name, "isspace") == 0 |
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/
feature-test.c 71 if (strcmp(argv[1], "--edns-version") == 0) {
80 if (strcmp(argv[1], "--enable-dnsrps") == 0) {
88 if (strcmp(argv[1], "--enable-dnstap") == 0) {
96 if (strcmp(argv[1], "--enable-querytrace") == 0) {
116 if (strcmp(argv[1], "--gethostname") == 0) {
129 if (strcmp(argv[1], "--gssapi") == 0) {
137 if (strcmp(argv[1], "--have-fips-dh") == 0) {
156 if (strcmp(argv[1], "--have-fips-mode") == 0) {
164 if (strcmp(argv[1], "--have-geoip2") == 0) {
172 if (strcmp(argv[1], "--have-json-c") == 0)
    [all...]
  /src/regress/lib/libc/ieeefp/testfloat/
testfloat.c 112 if ( strcmp( argPtr, "help" ) == 0 ) {
170 else if ( strcmp( argPtr, "list" ) == 0 ) {
181 else if ( strcmp( argPtr, "level" ) == 0 ) {
187 else if ( strcmp( argPtr, "level1" ) == 0 ) {
190 else if ( strcmp( argPtr, "level2" ) == 0 ) {
193 else if ( strcmp( argPtr, "errors" ) == 0 ) {
202 else if ( strcmp( argPtr, "errorstop" ) == 0 ) {
205 else if ( strcmp( argPtr, "forever" ) == 0 ) {
209 else if ( ( strcmp( argPtr, "checkNaNs" ) == 0 )
210 || ( strcmp( argPtr, "checknans" ) == 0 ) )
    [all...]
  /src/sys/arch/epoc32/epoc32/
internal.c 67 if (strcmp(epoc32_model, "SERIES5 R1") == 0) {
68 if (strcmp(cf->cf_name, "clpssoc") != 0)
70 } else if (strcmp(epoc32_model, "SERIES5mx") == 0) {
71 if (strcmp(cf->cf_name, "windermere") != 0)
73 } else if (strcmp(epoc32_model, "SERIES 7") == 0) {
74 if (strcmp(cf->cf_name, "saip") != 0)
  /src/external/mit/libuv/dist/test/
test-uname.c 50 ASSERT_OK(strcmp(buffer.sysname, buf.sysname));
51 ASSERT_OK(strcmp(buffer.version, buf.version));
55 ASSERT_OK(strcmp(buffer.release, temp));
57 ASSERT_OK(strcmp(buffer.release, buf.release));
61 ASSERT_OK(strcmp(buffer.machine, "ppc64"));
63 ASSERT_OK(strcmp(buffer.machine, buf.machine));
  /src/lib/libc/locale/
dummy_lc_template.h 41 if (strcmp(name, locale->part_name[(size_t)_CATEGORY_ID])) {
42 if (!strcmp(_C_LOCALE, name))
44 else if (!strcmp(_POSIX_LOCALE, name))
  /src/external/gpl2/diffutils/dist/lib/
hard-locale.c 54 if (strcmp (p, "C") == 0 || strcmp (p, "POSIX") == 0)
66 && strcmp (p, locale) == 0)
68 && strcmp (p, locale) == 0))
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
hard-locale.c 49 if (strcmp (p, "C") == 0 || strcmp (p, "POSIX") == 0)
61 && strcmp (p, locale) == 0)
63 && strcmp (p, locale) == 0))
  /src/external/gpl3/gdb/dist/sim/testsuite/common/
bits-tst.c 12 if (strcmp (call, "MASK") == 0)
14 if (strcmp (call, "MASK8") == 0)
16 if (strcmp (call, "MASK16") == 0)
18 if (strcmp (call, "MASK32") == 0)
20 if (strcmp (call, "MASK64") == 0)
23 if (strcmp (call, "EXTRACT") == 0)
25 if (strcmp (call, "EXTRACT8") == 0)
27 if (strcmp (call, "EXTRACT16") == 0)
29 if (strcmp (call, "EXTRACT32") == 0)
31 if (strcmp (call, "EXTRACT64") == 0
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/testsuite/common/
bits-tst.c 12 if (strcmp (call, "MASK") == 0)
14 if (strcmp (call, "MASK8") == 0)
16 if (strcmp (call, "MASK16") == 0)
18 if (strcmp (call, "MASK32") == 0)
20 if (strcmp (call, "MASK64") == 0)
23 if (strcmp (call, "EXTRACT") == 0)
25 if (strcmp (call, "EXTRACT8") == 0)
27 if (strcmp (call, "EXTRACT16") == 0)
29 if (strcmp (call, "EXTRACT32") == 0)
31 if (strcmp (call, "EXTRACT64") == 0
    [all...]
  /src/external/bsd/unbound/dist/smallapp/
unbound-checkconf.c 109 if(strcmp(opt, "pidfile") == 0 && final) {
116 if(strcmp(opt, "auto-trust-anchor-file") == 0 && final) {
359 if(strcmp(cfg->ifs[i], cfg->ifs[i2]) == 0) {
389 if(strcmp(cfg->ifs[i], resif[i][j]) != 0)
398 if(strcmp(resif[i][j], resif[i2][j2])
401 if(strcmp(cfg->ifs[i], resif[i][j]) != 0)
404 if(strcmp(cfg->ifs[i2], resif[i2][j2]) != 0)
427 if(i!=j && strcmp(cfg->out_ifs[i], cfg->out_ifs[j])==0)
478 if(strcmp(p->str, rcif[i])!=0)
787 if(strcmp(cfg->module_conf, "iterator") !=
    [all...]
  /src/usr.sbin/lptctl/
lptctl.c 76 if (strcmp("dma", argv[i]) == 0) {
77 if (strcmp("yes", argv[i + 1]) == 0)
79 else if (strcmp("no", argv[i + 1]) == 0)
85 } else if (strcmp("mode", argv[i]) == 0) {
86 if (strcmp("standard", argv[i + 1]) == 0)
88 else if (strcmp("ps2", argv[i + 1]) == 0)
90 else if (strcmp("nibble", argv[i + 1]) == 0)
92 else if (strcmp("fast", argv[i + 1]) == 0)
94 else if (strcmp("ecp", argv[i + 1]) == 0)
96 else if (strcmp("epp", argv[i + 1]) == 0
    [all...]

Completed in 53 milliseconds

1 2 3 4 5 6 7 8 91011>>