/external/ImageMagick/MagickWand/tests/ |
D | script-token-test-results.txt | 1 l=8, c=1, stat=0, len=64, token="-option" 2 l=8, c=9, stat=0, len=64, token="key" 3 l=9, c=1, stat=0, len=64, token="+reset" 4 l=9, c=10, stat=0, len=64, token="imbedded#hash" 5 l=11, c=1, stat=0, len=64, token="This is a single token" 6 l=13, c=1, stat=0, len=64, token="And\ 'even '"more "complex" 7 l=15, c=1, stat=0, len=64, token="Backslash chars \n are returned as is" 8 l=16, c=1, stat=0, len=64, token="regardless \n of quoting" 9 l=18, c=1, stat=0, len=64, token="Single quote escapes" 10 l=19, c=2, stat=0, len=64, token="'" [all …]
|
/external/autotest/client/tests/signaltest/src/ |
D | signaltest.c | 98 struct thread_stat *stat = par->stats; in signalthread() local 119 stat->tid = gettid(); in signalthread() 129 stat->threadstarted++; in signalthread() 154 if (!par->id && !(stat->cycles & 0x0F)) in signalthread() 159 pthread_kill(stat->tothread, SIGUSR1); in signalthread() 170 if (diff < stat->min) in signalthread() 171 stat->min = diff; in signalthread() 172 if (diff > stat->max) in signalthread() 173 stat->max = diff; in signalthread() 174 stat->avg += (double) diff; in signalthread() [all …]
|
/external/perf_data_converter/src/quipper/ |
D | perf_recorder_test.cc | 78 quipper::PerfStatProto stat; in TEST_F() local 79 ASSERT_TRUE(stat.ParseFromString(output_string)); in TEST_F() 80 EXPECT_GT(stat.line_size(), 0); in TEST_F() 103 quipper::PerfStatProto stat; in TEST_F() local 104 ASSERT_TRUE(stat.ParseFromString(output_string)); in TEST_F() 108 EXPECT_EQ(expected_command_line, stat.command_line()); in TEST_F() 111 ASSERT_EQ(1, stat.line_size()); in TEST_F() 112 EXPECT_TRUE(stat.line(0).has_time_ms()); in TEST_F() 113 EXPECT_TRUE(stat.line(0).has_count()); in TEST_F() 114 EXPECT_TRUE(stat.line(0).has_event_name()); in TEST_F() [all …]
|
/external/toybox/toys/other/ |
D | stat.c | 46 struct stat st; 48 } stat; 75 struct stat *stat = (struct stat *)&TT.stat; in print_stat() local 77 if (type == 'a') out('o', stat->st_mode&~S_IFMT); in print_stat() 81 mode_to_string(stat->st_mode, str); in print_stat() 83 } else if (type == 'b') out('u', stat->st_blocks); in print_stat() 85 else if (type == 'd') out('d', stat->st_dev); in print_stat() 86 else if (type == 'D') out('x', stat->st_dev); in print_stat() 87 else if (type == 'f') out('x', stat->st_mode); in print_stat() 91 int i, filetype = stat->st_mode & S_IFMT; in print_stat() [all …]
|
/external/ltp/testcases/kernel/syscalls/nftw/ |
D | nftw.h | 112 int test_func1(const char *, const struct stat *, int, struct FTW *); 113 int test_func3(const char *, const struct stat *, int, struct FTW *); 114 int test_func4(const char *, const struct stat *, int, struct FTW *); 115 int test_func5(const char *, const struct stat *, int, struct FTW *); 116 int test_func7(const char *, const struct stat *, int, struct FTW *); 117 int test_func8(const char *, const struct stat *, int, struct FTW *); 118 int test_func9(const char *, const struct stat *, int, struct FTW *); 119 int test_func10(const char *, const struct stat *, int, struct FTW *); 120 int test_func11(const char *, const struct stat *, int, struct FTW *); 121 int test_func12(const char *, const struct stat *, int, struct FTW *); [all …]
|
/external/u-boot/drivers/mmc/ |
D | mxcmmc.c | 202 static int mxcmci_finish_data(struct mxcmci_host *host, unsigned int stat) in mxcmci_finish_data() argument 206 if (stat & STATUS_ERR_MASK) { in mxcmci_finish_data() 208 stat); in mxcmci_finish_data() 209 if (stat & STATUS_CRC_READ_ERR) { in mxcmci_finish_data() 211 } else if (stat & STATUS_CRC_WRITE_ERR) { in mxcmci_finish_data() 212 u32 err_code = (stat >> 9) & 0x3; in mxcmci_finish_data() 217 } else if (stat & STATUS_TIME_OUT_READ) { in mxcmci_finish_data() 229 static int mxcmci_read_response(struct mxcmci_host *host, unsigned int stat) in mxcmci_read_response() argument 239 if (stat & STATUS_TIME_OUT_RESP) { in mxcmci_read_response() 242 } else if (stat & STATUS_RESP_CRC_ERR && cmd->resp_type & MMC_RSP_CRC) { in mxcmci_read_response() [all …]
|
/external/autotest/client/tests/cyclictest/src/ |
D | cyclictest.c | 207 struct thread_stat *stat = par->stats; in timerthread() local 229 stat->tid = gettid(); in timerthread() 238 sigev.sigev_notify_thread_id = stat->tid; in timerthread() 270 stat->threadstarted++; in timerthread() 316 if (diff < stat->min) in timerthread() 317 stat->min = diff; in timerthread() 318 if (diff > stat->max) in timerthread() 319 stat->max = diff; in timerthread() 320 stat->avg += (double) diff; in timerthread() 330 stat->act = diff; in timerthread() [all …]
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | dependency_manager_util_unittest.py | 7 import stat 31 os.chmod(self.read_only_path, stat.S_IRUSR) 36 os.chmod(self.writable_path, stat.S_IRUSR | stat.S_IWUSR) 41 os.chmod(self.executable_path, stat.S_IRWXU) 46 os.chmod(self.sub_read_only_path, stat.S_IRUSR) 51 os.chmod(self.sub_writable_path, stat.S_IRUSR | stat.S_IWUSR) 56 os.chmod(self.sub_executable_path, stat.S_IRWXU) 87 stat.S_IRUSR & stat.S_IMODE(os.stat(read_only_path).st_mode)) 89 stat.S_IRUSR & stat.S_IMODE(os.stat(sub_read_only_path).st_mode)) 91 stat.S_IRUSR & stat.S_IMODE(os.stat(writable_path).st_mode)) [all …]
|
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/ |
D | grow_stats_test.cc | 73 std::unique_ptr<DenseClassificationGrowStats> stat( in TEST() local 75 stat->Initialize(); in TEST() 82 RunBatch(stat.get(), target.get()); in TEST() 83 CHECK(stat->IsFinished()); in TEST() 86 stat->PackToProto(&slot); in TEST() 116 std::unique_ptr<TestableRunningStats> stat( in TEST() local 118 stat->Initialize(); in TEST() 125 RunBatch(stat.get(), target.get()); in TEST() 126 CHECK(stat->IsFinished()); in TEST() 128 ASSERT_FLOAT_EQ(stat->test_left_sum(0), 2.3 + 20.3 + 1.1); in TEST() [all …]
|
/external/u-boot/drivers/i2c/ |
D | lpc32xx_i2c.c | 90 int stat; in __i2c_probe_chip() local 100 while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI)) in __i2c_probe_chip() 103 return (stat & LPC32XX_I2C_STAT_NAI) ? -1 : 0; in __i2c_probe_chip() 113 int stat, wlen; in __i2c_read() local 133 while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI)) in __i2c_read() 136 writel(1, &base->stat); in __i2c_read() 146 stat = readl(&base->stat); in __i2c_read() 149 & (!(stat & LPC32XX_I2C_STAT_TFF))) { in __i2c_read() 157 & (!(stat & LPC32XX_I2C_STAT_RFE))) { in __i2c_read() 164 while (!((stat = readl(&base->stat)) & LPC32XX_I2C_STAT_TDI)) in __i2c_read() [all …]
|
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/ |
D | JcDnld.cpp | 38 BOOLEAN stat = FALSE; in JCDNLD_Init() local 53 stat = jd->initialize (channel); in JCDNLD_Init() 54 if(stat != TRUE) in JCDNLD_Init() 67 stat = FALSE; in JCDNLD_Init() 72 stat = TRUE; in JCDNLD_Init() 78 stat = FALSE; in JCDNLD_Init() 81 return (stat == true)?STATUS_OK:STATUS_FAILED; in JCDNLD_Init() 97 BOOLEAN stat = FALSE; in JCDNLD_StartDownload() local 116 BOOLEAN stat = FALSE; in JCDNLD_DeInit() local 127 stat = channel->close(jcHandle); in JCDNLD_DeInit() [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_stat.py | 4 import stat 65 st_mode = os.stat(fname).st_mode 70 fmt = getattr(stat, "S_IF" + name.lstrip("F")) 71 self.assertEqual(stat.S_IFMT(mode), fmt) 75 func = getattr(stat, funcname, None) 92 self.assertEqual(stat.S_IMODE(st_mode), 93 stat.S_IRWXU) 98 self.assertEqual(stat.S_IMODE(st_mode), 99 stat.S_IRWXG) 104 self.assertEqual(stat.S_IMODE(st_mode), [all …]
|
/external/libpng/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/expat/conftools/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/strace/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/libxkbcommon/xkbcommon/build-aux/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/python/cpython2/Modules/_ctypes/libffi/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/iperf3/config/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/libnetfilter_conntrack/build-aux/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/ImageMagick/config/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/speex/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/lmfit/build-aux/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/libevent/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/pcre/dist2/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|
/external/curl/ |
D | depcomp | 192 stat=$? 193 if test $stat -ne 0; then 195 exit $stat 218 stat=$? 219 if test $stat -ne 0; then 221 exit $stat 260 stat=$? 261 if test $stat -ne 0; then 263 exit $stat 315 stat=$? [all …]
|