Home
last modified time | relevance | path

Searched refs:memeq (Results 1 – 7 of 7) sorted by relevance

/third_party/nghttp2/lib/
Dnghttp2_hd.c112 static int memeq(const void *s1, const void *s2, size_t n) { in memeq() function
125 if (memeq("t", name, 1)) { in lookup_token()
134 if (memeq("vi", name, 2)) { in lookup_token()
139 if (memeq("ag", name, 2)) { in lookup_token()
148 if (memeq("dat", name, 3)) { in lookup_token()
153 if (memeq("eta", name, 3)) { in lookup_token()
158 if (memeq("lin", name, 3)) { in lookup_token()
163 if (memeq("fro", name, 3)) { in lookup_token()
168 if (memeq("hos", name, 3)) { in lookup_token()
173 if (memeq("var", name, 3)) { in lookup_token()
[all …]
/third_party/node/deps/nghttp2/lib/
Dnghttp2_hd.c112 static int memeq(const void *s1, const void *s2, size_t n) { in memeq() function
125 if (memeq("t", name, 1)) { in lookup_token()
134 if (memeq("vi", name, 2)) { in lookup_token()
139 if (memeq("ag", name, 2)) { in lookup_token()
148 if (memeq("dat", name, 3)) { in lookup_token()
153 if (memeq("eta", name, 3)) { in lookup_token()
158 if (memeq("lin", name, 3)) { in lookup_token()
163 if (memeq("fro", name, 3)) { in lookup_token()
168 if (memeq("hos", name, 3)) { in lookup_token()
173 if (memeq("var", name, 3)) { in lookup_token()
[all …]
/third_party/protobuf/src/google/protobuf/stubs/
Dfastmem.h67 inline bool memeq(const char* a, const char* b, size_t n) { in memeq() function
/third_party/flutter/skia/src/ports/
DSkFontMgr_config_parser.cpp99 static bool memeq(const char *s1, const char *s2, size_t n1, size_t n2) in memeq() function
103 #define MEMEQ(c, s, n) memeq(c, s, sizeof(c) - 1, n)
DSkFontMgr_android_parser.cpp118 static bool memeq(const char* s1, const char* s2, size_t n1, size_t n2) { in memeq() function
121 #define MEMEQ(c, s, n) memeq(c, s, sizeof(c) - 1, n)
/third_party/skia/src/ports/
DSkFontMgr_android_parser.cpp120 static bool memeq(const char* s1, const char* s2, size_t n1, size_t n2) { in memeq() function
123 #define MEMEQ(c, s, n) memeq(c, s, sizeof(c) - 1, n)
/third_party/toybox/toys/pending/
Dxzcat.c320 #define memeq(a, b, size) (memcmp(a, b, size) == 0) macro
2719 if (!memeq(s->temp.buf, HEADER_MAGIC, HEADER_MAGIC_SIZE)) in dec_stream_header()
2750 if (!memeq(s->temp.buf + 10, FOOTER_MAGIC, FOOTER_MAGIC_SIZE)) in dec_stream_footer()
3013 if (!memeq(&s->block.hash, &s->index.hash, in dec_main()