HomeSort by relevance Sort by last modified time
    Searched defs:STRINGIFY (Results 1 - 25 of 49) sorted by null

1 2

  /frameworks/base/libs/hwui/
OpDumper.cpp 25 #define STRINGIFY(n) #n,
26 static const char* sOpNameLut[] = BUILD_FULL_OP_LUT(STRINGIFY);
  /system/chre/util/include/chre/util/
macros.h 29 #define STRINGIFY(x) STRINGIFY2(x)
  /external/libunwind/src/setjmp/
longjmp.c 104 #define STRINGIFY(x) STRINGIFY1(x)
106 __attribute__ ((alias (STRINGIFY(_longjmp))));
  /external/strace/
macros.h 35 #define STRINGIFY(...) #__VA_ARGS__
36 #define STRINGIFY_VAL(...) STRINGIFY(__VA_ARGS__)
  /external/swiftshader/src/Common/
Version.h 20 #define STRINGIFY(x) #x
21 #define MACRO_STRINGIFY(x) STRINGIFY(x)
  /external/ImageMagick/MagickCore/
accelerate-kernels-private.h 36 #define STRINGIFY(...) #__VA_ARGS__ "\n"
71 STRINGIFY(
111 STRINGIFY(
189 STRINGIFY(
200 STRINGIFY(
214 STRINGIFY(
230 STRINGIFY(
251 STRINGIFY(
292 STRINGIFY(
301 STRINGIFY(
    [all...]
  /external/kmod/shared/
macro.h 49 #define STRINGIFY(x) XSTRINGIFY(x)
  /external/libmojo/mojo/public/c/system/tests/
core_unittest_pure_c.c 19 #define STRINGIFY(x) #x
20 #define STRINGIFY2(x) STRINGIFY(x)
28 return FAILURE(STRINGIFY(a) " != " STRINGIFY(b) " (expected ==)"); \
33 return FAILURE(STRINGIFY(a) " == " STRINGIFY(b) " (expected !=)"); \
  /external/vixl/test/
test-use-scratch-register-scope.cc 39 #define STRINGIFY(x) #x
46 Test test_##Name##_AArch32(STRINGIFY(AARCH32_SCRATCH_##Name), \
55 Test test_##Name##_AArch64(STRINGIFY(AARCH64_SCRATCH_##Name), \
  /external/jemalloc/test/unit/
quarantine.c 5 #define STRINGIFY(x) STRINGIFY_HELPER(x)
9 STRINGIFY(QUARANTINE_SIZE);
  /art/libartbase/base/
macros.h 58 // Stringify the argument.
60 #define STRINGIFY(x) QUOTE(x)
  /device/google/contexthub/lib/nanohub/
sha2.c 38 #define STRINGIFY(b) STRINFIGY2(b)
39 #define ror(v, b) ({uint32_t ret; if (b) asm("ror %0, #" STRINGIFY(b) :"=r"(ret):"0"(v)); else ret = v; ret;})
aes.c 137 #define STRINGIFY(b) STRINFIGY2(b)
138 #define ror(v, b) ({uint32_t ret; if (b) asm("ror %0, #" STRINGIFY(b) :"=r"(ret):"0"(v)); else ret = v; ret;})
  /external/perfetto/src/ftrace_reader/
format_parser.cc 35 #define STRINGIFY(x) STRINGIFY2(x)
102 sscanf(line, "name: %" STRINGIFY(MAX_FIELD_LENGTH) "s", buffer) == 1) {
116 "\tfield:%" STRINGIFY(MAX_FIELD_LENGTH) "[^;];\toffset: "
  /system/keymaster/include/keymaster/
logger.h 59 #define STRINGIFY(x) STR(x)
60 #define FILE_LINE __FILE__ ", Line " STRINGIFY(__LINE__) ": "
  /device/google/contexthub/firmware/os/inc/
toolchain.h 78 #define STRINGIFY(s) _STRINGIFY(s)
91 #define WEAK_ALIAS(X,Y) void X(void) __attribute__ ((weak, alias (STRINGIFY(Y))))
  /external/dhcpcd-6.8.2/
common.h 50 #define STRINGIFY(a) #a
51 #define TOSTRING(a) STRINGIFY(a)
  /external/elfutils/backends/
common-reloc.c 40 #define STRINGIFIED_PASTE(a, b) STRINGIFY (PASTE (a, b))
41 #define STRINGIFY(x) STRINGIFY_1 (x)
  /external/libpcap/
pcap-libdlpi.c 245 #define STRINGIFY(n) #n
261 pcap_libdlpi_err(p->opt.device, "dlpi_promiscon" STRINGIFY(level),
  /external/protobuf/conformance/
conformance_test_runner.cc 76 #define STRINGIFY(x) #x
77 #define TOSTRING(x) STRINGIFY(x)
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/include/
cext.h 40 #define STRINGIFY(n) STRINGIFY_HELPER(n)
45 #define EXT_MODULE_NAME STRINGIFY(EXT_MODULE)
47 #define EXT_PACKAGE_NAME STRINGIFY(EXT_PACKAGE)
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/include/
cext.h 40 #define STRINGIFY(n) STRINGIFY_HELPER(n)
45 #define EXT_MODULE_NAME STRINGIFY(EXT_MODULE)
47 #define EXT_PACKAGE_NAME STRINGIFY(EXT_PACKAGE)
  /external/libvpx/libvpx/test/
video_source.h 34 #define STRINGIFY(S) TO_STRING(S)
44 return STRINGIFY(LIBVPX_TEST_DATA_PATH);
54 #undef STRINGIFY
  /external/mdnsresponder/mDNSCore/
DNSCommon.h 30 // Note: The C preprocessor stringify operator ('#') makes a string from its argument, without macro expansion
32 // To expand "version" to its value before making the string, use STRINGIFY(version) instead
34 #define STRINGIFY(s) STRINGIFY_ARGUMENT_WITHOUT_EXPANSION(s)
  /external/mdnsresponder/mDNSShared/
dnssd_clientlib.c 358 // Note: The C preprocessor stringify operator ('#') makes a string from its argument, without macro expansion
360 // To expand "version" to its value before making the string, use STRINGIFY(version) instead
362 #define STRINGIFY(s) STRINGIFY_ARGUMENT_WITHOUT_EXPANSION(s)
367 const char VersionString_SCCS_libdnssd[] = "@(#) libdns_sd " STRINGIFY(mDNSResponderVersion) " (" __DATE__ " " __TIME__ ")";

Completed in 1701 milliseconds

1 2