HomeSort by relevance Sort by last modified time
    Searched refs:MSG (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/f2fs-tools/mkfs/
f2fs_format_main.c 44 MSG(0, "\nUsage: mkfs.f2fs [options] device [sectors]\n");
45 MSG(0, "[options]:\n");
46 MSG(0, " -a heap-based allocation [default:0]\n");
47 MSG(0, " -c [device path] up to 7 devices excepts meta device\n");
48 MSG(0, " -d debug level [default:0]\n");
49 MSG(0, " -e [cold file ext list] e.g. \"mp3,gif,mov\"\n");
50 MSG(0, " -E [hot file ext list] e.g. \"db\"\n");
51 MSG(0, " -f force overwrite the exist filesystem\n");
52 MSG(0, " -g add default options\n");
53 MSG(0, " -i extended node bitmap, node ratio is 20%% by default\n")
    [all...]
f2fs_format_utils.c 59 MSG(1, "\tError: Malloc Failed for trim_stat_buf!!!\n");
64 MSG(1, "\tError: Failed to get the device stat!!!\n");
73 MSG(0, "Info: [%s] Discarding device\n", dev->path);
78 MSG(0, "Info: fallocate(PUNCH_HOLE|KEEP_SIZE) is failed\n");
90 MSG(0, "Info: This device doesn't support BLKSECDISCARD\n");
92 MSG(0, "Info: Secure Discarded %lu MB\n",
99 MSG(0, "Info: This device doesn't support BLKDISCARD\n");
101 MSG(0, "Info: Discarded %llu MB\n", range[1] >> 20);
f2fs_format.c 134 MSG(0, "\tWarn: Extension name (%s) is too long\n", ue);
228 MSG(1, "\t%s: Align start sector number to the page unit\n",
230 MSG(1, "\ti.e., start sector: %d, ofs:%d (sects/page: %d)\n",
241 MSG(0, "Info: zone aligned segment0 blkaddr: %u\n",
246 MSG(1, "\tError: Unaligned segment0 block address %u\n",
400 MSG(0, "\tError: Device does not have enough random "
427 MSG(0, "\tError: Device size is not sufficient for F2FS volume\n");
454 MSG(0, "Info: add quota type = %u => %u\n",
462 MSG(1, "\tError: %d zones: Need more zones "
497 MSG(0, "Info: format version with\n \"%s\"\n", c.version)
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
cgroup_helpers.h 8 #define log_err(MSG, ...) fprintf(stderr, "(%s:%d: errno: %s) " MSG "\n", \
  /external/ltp/testcases/open_posix_testsuite/bin/
run-all-posix-option-group-tests.sh 13 for option_group in AIO MEM MSG SEM SIG THR TMR TPS; do
  /external/f2fs-tools/fsck/
main.c 53 MSG(0, "\nUsage: fsck.f2fs [options] device\n");
54 MSG(0, "[options]:\n");
55 MSG(0, " -a check/fix potential corruption, reported by f2fs\n");
56 MSG(0, " -d debug level [default:0]\n");
57 MSG(0, " -f check/fix entire partition\n");
58 MSG(0, " -g add default options\n");
59 MSG(0, " -O feature1[feature2,feature3,...] e.g. \"encrypt\"\n");
60 MSG(0, " -p preen mode [default:0 the same as -a [0|1]]\n");
61 MSG(0, " -S sparse_mode\n");
62 MSG(0, " -t show directory tree\n")
    [all...]
mount.c 52 MSG(0, "\r [ %c ] Free segments: 0x%x", progress[i % 5], get_free_segments(sbi));
66 MSG(0, "Invalid ACL version [0x%x : 0x%x]\n",
73 MSG(0, "Invalid ACL value size %d\n", size);
79 MSG(0, "Invalid ACL entries count %d\n", count);
88 MSG(0, "tag:0x%x perm:0x%x\n",
95 MSG(0, "tag:0x%x perm:0x%x uid:%u\n",
103 MSG(0, "tag:0x%x perm:0x%x gid:%u\n",
111 MSG(0, "Unknown ACL tag 0x%x\n",
121 MSG(0, "%02X", value[i]); \
122 MSG(0, "\n");
    [all...]
  /external/deqp/executor/
xeDefs.hpp 49 #define XE_FAIL(MSG) throw xe::Error(MSG, "", __FILE__, __LINE__)
51 #define XE_CHECK_MSG(X, MSG) do { if ((!deGetFalse() && (X)) ? DE_FALSE : DE_TRUE) throw xe::Error(MSG, #X, __FILE__, __LINE__); } while(deGetFalse())
  /art/benchmark/jni-perf/src/
JniPerfBenchmark.java 18 private static final String MSG = "ABCDE";
27 char c = MSG.charAt(2);
  /external/deqp/framework/opengl/
gluDefs.hpp 29 #define GLU_EXPECT_NO_ERROR(ERR, MSG) glu::checkError((ERR), MSG, __FILE__, __LINE__)
31 #define GLU_CHECK_MSG(MSG) GLU_EXPECT_NO_ERROR(glGetError(), MSG)
36 #define GLU_CHECK_GLW_MSG(GL, MSG) GLU_EXPECT_NO_ERROR((GL).getError(), MSG)
74 void checkError (deUint32 err, const char* msg, const char* file, int line);
75 void checkError (const RenderContext& context, const char* msg, const char* file, int line);
  /external/lz4/tests/
roundTripTest.c 50 #define MSG(...) fprintf(stderr, __VA_ARGS__)
54 MSG(__VA_ARGS__); \
55 MSG(" \n"); \
186 MSG("Ignoring %s directory \n", fileName);
190 MSG("Impossible to open %s \n", fileName);
195 MSG("Error reading %s \n", fileName);
207 MSG("not enough memory \n");
218 MSG(" \n");
219 MSG("bad usage: \n");
220 MSG(" \n")
    [all...]
  /external/deqp/framework/common/
tcuDefs.hpp 118 #define TCU_THROW_EXPR(ERRCLASS, MSG, EXPR) \
119 throw tcu::ERRCLASS(MSG, EXPR, __FILE__, __LINE__)
121 #define TCU_THROW(ERRCLASS, MSG) \
122 TCU_THROW_EXPR(ERRCLASS, MSG, DE_NULL)
124 #define TCU_CHECK_AND_THROW(ERRCLASS, X, MSG) \
127 TCU_THROW_EXPR(ERRCLASS, MSG, #X); \
131 #define TCU_FAIL(MSG) TCU_THROW(TestError, MSG)
137 #define TCU_CHECK_MSG(X, MSG) do { if (!(!deGetFalse() && (X))) throw tcu::TestError((MSG), #X, __FILE__, __LINE__); } while(deGetFalse()
    [all...]
  /external/ltp/testcases/cve/
cve-2016-7117.c 62 #define MSG "abcdefghijklmnop"
78 .iov_len = sizeof(MSG),
93 static char rbuf[sizeof(MSG)];
120 send(socket_fds[0], MSG, sizeof(MSG), 0);
121 send(socket_fds[0], MSG, sizeof(MSG), 0);
  /external/ltp/testcases/kernel/hotplug/cpu_hotplug/include/
cpuhotplug_testsuite.sh 106 MSG=${1:-"perform operation"}
109 echo "Time to ${MSG} : $TM"
  /external/deqp/execserver/
xsDefs.hpp 85 #define XS_FAIL(MSG) throw xs::Error(MSG, "", __FILE__, __LINE__)
87 #define XS_CHECK_MSG(X, MSG) do { if ((!deGetFalse() && (X)) ? DE_FALSE : DE_TRUE) throw xs::Error(MSG, #X, __FILE__, __LINE__); } while(deGetFalse())
  /external/skia/include/gpu/
GrConfig.h 110 #define GR_WARN(MSG) (GR_FILE_AND_LINE_STR "WARNING: " MSG)
112 #define GR_WARN(MSG) ("WARNING: " MSG)
  /external/skia/tools/skqp/
branch_skqp_dev.sh 10 MSG="$(printf 'Cut SkQP %s\n\nNo-Try: true' "$(date +%Y-%m-%d)")"
11 git merge -s ours origin/skqp/dev -m "$MSG"
  /external/skqp/include/gpu/
GrConfig.h 110 #define GR_WARN(MSG) (GR_FILE_AND_LINE_STR "WARNING: " MSG)
112 #define GR_WARN(MSG) ("WARNING: " MSG)
  /external/skqp/tools/skqp/
branch_skqp_dev.sh 10 MSG="$(printf 'Cut SkQP %s\n\nNo-Try: true' "$(date +%Y-%m-%d)")"
11 git merge -s ours origin/skqp/dev -m "$MSG"
  /external/webrtc/webrtc/test/win/
run_loop_win.cc 24 MSG msg; local
26 while ((ret = GetMessage(&msg, NULL, 0, 0)) != 0) {
28 TranslateMessage(&msg);
29 DispatchMessage(&msg);
  /cts/suite/audio_quality/lib/src/task/
TaskBatch.cpp 61 MSG("= Test batch %s version %s started. =", name.string(),
64 MSG("= Finished Test batch =");
  /development/tools/core_connectivity/
check_style.sh 30 local MSG=`git rev-list --format=%B --max-count=1 HEAD`
35 done < <(echo "$MSG")
  /external/eigen/Eigen/src/Core/util/
StaticAssert.h 16 * - in EIGEN_STATIC_ASSERT(CONDITION,MSG) the parameter CONDITION must be a compile time boolean
17 * expression, and MSG an enum listed in struct internal::static_assertion<true>
21 * eigen_assert(CONDITION && "MSG")
32 #define EIGEN_STATIC_ASSERT(X,MSG) static_assert(X,#MSG);
117 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \
118 {Eigen::internal::static_assertion<bool(CONDITION)>::MSG;}
122 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \
123 if (Eigen::internal::static_assertion<static_cast<bool>(CONDITION)>::MSG) {}
131 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) eigen_assert((CONDITION) && #MSG)
    [all...]
  /external/boringssl/src/crypto/fipsmodule/sha/asm/
sha1-armv8.pl 240 my @MSG=map("v$_.16b",(4..7));
262 ld1 {@MSG[0]-@MSG[3]},[$inp],#64
264 rev32 @MSG[0],@MSG[0]
265 rev32 @MSG[1],@MSG[1]
267 add.i32 $W0,@Kxx[0],@MSG[0]
268 rev32 @MSG[2],@MSG[2
    [all...]
sha256-586.pl 528 my @MSG=map("xmm$_",(3..6));
555 &movdqu (@MSG[0],&QWP(0,$inp));
556 &movdqu (@MSG[1],&QWP(0x10,$inp));
557 &movdqu (@MSG[2],&QWP(0x20,$inp));
558 &pshufb (@MSG[0],$TMP);
559 &movdqu (@MSG[3],&QWP(0x30,$inp));
563 &paddd ($Wi,@MSG[0]);
564 &pshufb (@MSG[1],$TMP);
572 &paddd ($Wi,@MSG[1]);
573 &pshufb (@MSG[2],$TMP)
    [all...]

Completed in 1764 milliseconds

1 2 3 4 5 6