Home
last modified time | relevance | path

Searched refs:t (Results 851 – 875 of 8705) sorted by relevance

1...<<31323334353637383940>>...349

/openbmc/linux/net/netfilter/
H A Dnf_conntrack_pptp.c128 const struct nf_conntrack_tuple *t) in destroy_sibling_or_exp() argument
136 nf_ct_dump_tuple(t); in destroy_sibling_or_exp()
139 h = nf_conntrack_find_get(net, zone, t); in destroy_sibling_or_exp()
149 exp = nf_ct_expect_find_get(net, zone, t); in destroy_sibling_or_exp()
165 struct nf_conntrack_tuple t; in pptp_destroy_siblings() local
170 memcpy(&t, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple, sizeof(t)); in pptp_destroy_siblings()
171 t.dst.protonum = IPPROTO_GRE; in pptp_destroy_siblings()
174 if (!destroy_sibling_or_exp(net, ct, &t)) in pptp_destroy_siblings()
178 memcpy(&t, &ct->tuplehash[IP_CT_DIR_REPLY].tuple, sizeof(t)); in pptp_destroy_siblings()
179 t.dst.protonum = IPPROTO_GRE; in pptp_destroy_siblings()
[all …]
/openbmc/linux/lib/
H A Doverflow_kunit.c31 # define SKIP_SIGN_MISMATCH(t) SKIP(t, "Clang 11 unwanted libcalls") argument
42 # define SKIP_64_ON_32(t) SKIP(t, "Clang 13 unwanted libcalls") argument
51 t sum, diff, prod; \
55 #define DEFINE_TEST_ARRAY(t) DEFINE_TEST_ARRAY_TYPED(t, t, t) argument
256 t _r; \
264 a, b, r, _r, #t); \
297 DEFINE_TEST_FUNC_TYPED(t ## _ ## t ## __ ## t, t, fmt)
339 t __e = (expect); \
340 t __d; \
350 if ((t)-1 < 0) \
[all …]
/openbmc/openbmc/poky/bitbake/bin/
H A Dbitbake-selftest42 for t in tests:
43 t = '.'.join(t.split('.')[:3]) variable
44 __import__(t)
/openbmc/qemu/target/s390x/tcg/
H A Ds390-tod.h24 static inline uint64_t tod2time(uint64_t t) in tod2time() argument
26 return ((t >> 9) * 125) + (((t & 0x1ff) * 125) >> 9); in tod2time()
/openbmc/linux/tools/testing/selftests/bpf/benchs/
H A Drun_bench_bpf_loop.sh8 for t in 1 4 8 12 16; do
10 subtitle "nr_loops: $i, nr_threads: $t"
12 "$($RUN_BENCH -p $t --nr_loops $i bpf-loop)"
/openbmc/qemu/tests/tcg/i386/
H A Dtest-mmx.c143 static void run_test(const TestDef *t) in run_test() argument
146 reg_state *init = t->init; in run_test()
148 printf("%5d %s\n", t->n, t->s); in run_test()
193 : : "r"(init), "r"(&result), "r"(t->fn) in run_test()
222 const TestDef *t; in run_all() local
223 for (t = test_table; t->fn; t++) { in run_all()
224 run_test(t); in run_all()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/
H A D0004-don-t-fail-if-GLOB_BRACE-and-GLOB_ALTDIRFUNC-is-not-.patch4 Subject: [PATCH 04/22] don't fail if GLOB_BRACE and GLOB_ALTDIRFUNC is not
7 If the standard library doesn't provide brace
8 expansion users just won't get it.
34 +/* Don't fail if the standard library
35 + * doesn't provide brace expansion */
48 /* We want to set GLOB_ALTDIRFUNC ourselves, don't allow it to be set. */
74 +/* Don't fail if the standard library
75 + * doesn't provide brace expansion */
125 +/* Don't fail if the standard library
126 + * doesn't provide brace expansion */
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/
H A D0004-don-t-fail-if-GLOB_BRACE-and-GLOB_ALTDIRFUNC-is-not-.patch4 Subject: [PATCH] don't fail if GLOB_BRACE and GLOB_ALTDIRFUNC is not defined
6 If the standard library doesn't provide brace
7 expansion users just won't get it.
33 +/* Don't fail if the standard library
34 + * doesn't provide brace expansion */
47 /* We want to set GLOB_ALTDIRFUNC ourselves, don't allow it to be set. */
73 +/* Don't fail if the standard library
74 + * doesn't provide brace expansion */
124 +/* Don't fail if the standard library
125 + * doesn't provide brace expansion */
/openbmc/linux/drivers/rtc/
H A Drtc-rx8025.c345 t->time.tm_sec = 0; in rx8025_read_alarm()
346 t->time.tm_min = bcd2bin(ald[0] & 0x7f); in rx8025_read_alarm()
348 t->time.tm_hour = bcd2bin(ald[1] & 0x3f); in rx8025_read_alarm()
350 t->time.tm_hour = bcd2bin(ald[1] & 0x1f) % 12 in rx8025_read_alarm()
353 dev_dbg(dev, "%s: date: %ptRr\n", __func__, &t->time); in rx8025_read_alarm()
355 t->pending = (ctrl2 & RX8025_BIT_CTRL2_DAFG) && t->enabled; in rx8025_read_alarm()
367 ald[0] = bin2bcd(t->time.tm_min); in rx8025_set_alarm()
369 ald[1] = bin2bcd(t->time.tm_hour); in rx8025_set_alarm()
371 ald[1] = (t->time.tm_hour >= 12 ? 0x20 : 0) in rx8025_set_alarm()
372 | bin2bcd((t->time.tm_hour + 11) % 12 + 1); in rx8025_set_alarm()
[all …]
H A Drtc-rx8010.c239 t->time.tm_sec = 0; in rx8010_read_alarm()
240 t->time.tm_min = bcd2bin(alarmvals[0] & 0x7f); in rx8010_read_alarm()
241 t->time.tm_hour = bcd2bin(alarmvals[1] & 0x3f); in rx8010_read_alarm()
244 t->time.tm_mday = bcd2bin(alarmvals[2] & 0x7f); in rx8010_read_alarm()
246 t->enabled = !!(rx8010->ctrlreg & RX8010_CTRL_AIE); in rx8010_read_alarm()
247 t->pending = (flagreg & RX8010_FLAG_AF) && t->enabled; in rx8010_read_alarm()
252 static int rx8010_set_alarm(struct device *dev, struct rtc_wkalrm *t) in rx8010_set_alarm() argument
269 alarmvals[0] = bin2bcd(t->time.tm_min); in rx8010_set_alarm()
270 alarmvals[1] = bin2bcd(t->time.tm_hour); in rx8010_set_alarm()
271 alarmvals[2] = bin2bcd(t->time.tm_mday); in rx8010_set_alarm()
[all …]
/openbmc/google-misc/subprojects/ncsid/test/
H A Dtest_lib.sh40 local t="${TESTS[i]}"
42 if ! "$t"; then
45 printf "ok %d - %s\n" "$tap_i" "$t"
/openbmc/qemu/tests/qemu-iotests/
H A D211.out3 …s": {"job-id": "job0", "options": {"driver": "file", "filename": "TEST_DIR/PID-t.vdi", "size": 0}}}
8 {"execute": "blockdev-add", "arguments": {"driver": "file", "filename": "TEST_DIR/PID-t.vdi", "node…
23 …s": {"job-id": "job0", "options": {"driver": "file", "filename": "TEST_DIR/PID-t.vdi", "size": 0}}}
28 …ns": {"driver": "vdi", "file": {"driver": "file", "filename": "TEST_DIR/PID-t.vdi"}, "preallocatio…
41 …s": {"job-id": "job0", "options": {"driver": "file", "filename": "TEST_DIR/PID-t.vdi", "size": 0}}}
46 …ns": {"driver": "vdi", "file": {"driver": "file", "filename": "TEST_DIR/PID-t.vdi"}, "preallocatio…
59 …ments": {"job-id": "job0", "options": {"driver": "vdi", "file": "this doesn't exist", "size": 3355…
61 Job failed: Cannot find device='this doesn't exist' nor node-name='this doesn't exist'
/openbmc/phosphor-watchdog/test/
H A Dmeson.build28 foreach t : tests
30 t,
32 t.underscorify(),
33 t + '.cpp',
/openbmc/phosphor-net-ipmid/test/
H A Dmeson.build31 foreach t : tests
32 test(t, executable(t.underscorify(), t,
/openbmc/phosphor-debug-collector/test/
H A Dmeson.build31 foreach t : tests
32 test(t, executable(t.underscorify(), t + '.cpp',
/openbmc/linux/include/linux/
H A Ddevice-mapper.h407 int dm_register_target(struct target_type *t);
408 void dm_unregister_target(struct target_type *t);
566 int dm_table_complete(struct dm_table *t);
571 void dm_table_destroy(struct dm_table *t);
588 sector_t dm_table_get_size(struct dm_table *t);
589 blk_mode_t dm_table_get_mode(struct dm_table *t);
590 struct mapped_device *dm_table_get_md(struct dm_table *t);
591 const char *dm_table_device_name(struct dm_table *t);
596 void dm_table_event(struct dm_table *t);
601 void dm_table_run_md_queue_async(struct dm_table *t);
[all …]
/openbmc/qemu/target/hppa/
H A Dtranslate.c1077 return t; in get_carry()
2156 unsigned rt = a->t; in trans_mfsp()
2171 unsigned rt = a->t; in trans_mfctl()
2240 unsigned ctl = a->t; in trans_mtctl()
2821 unsigned rt = a->t; in trans_or()
3300 if (a->t == 0) { in trans_ld()
3693 tcg_gen_shli_i64(t, t, 1); in trans_shrp_sar()
4372 TCGv_i64 t; in trans_ftest() local
4471 save_frd(a->t, x); in trans_xmpyu()
4545 save_frw_i32(a->t, x); in trans_fmpyfadd_f()
[all …]
/openbmc/openbmc-tools/dbus-vis/
H A Dinfo_panel.js49 function AddOneRowToTable(t, content) { argument
53 t.appendChild(tr);
58 function AddDBusRowHeaderToTable(t) { argument
67 t.appendChild(tr);
70 function AddDBusMessageToTable(t, m) { argument
89 t.appendChild(tr);
/openbmc/webui-vue/src/store/modules/Logs/
H A DDumpsStore.js63 throw new Error(i18n.global.t('pageDumps.toast.errorStartBmcDump'));
78 i18n.global.t('pageDumps.toast.errorStartSystemDump'),
101 const message = i18n.global.t(
109 const message = i18n.global.t(
128 return i18n.global.t(
136 i18n.global.t('pageDumps.toast.errorDeleteDump', totalDumpCount),
/openbmc/openbmc/poky/meta/recipes-devtools/patch/patch/
H A D0001-Don-t-leak-temporary-file-on-failed-ed-style-patch.patch4 Subject: [PATCH 1/2] Don't leak temporary file on failed ed-style patch
11 tmpname. Don't unlink the file directly, instead tag it for removal
64 - pfatal ("Can't create temporary file %s", quotearg (tmpname));
65 + pfatal ("Can't create temporary file %s", quotearg (TMPEDNAME));
69 - pfatal ("Can't open stream for file %s", quotearg (tmpname));
70 + pfatal ("Can't open stream for file %s", quotearg (TMPEDNAME));
78 - pfatal ("Can't rewind to the beginning of file %s", quotearg (tmpname));
80 + pfatal ("Can't rewind to the beginning of file %s", quotearg (TMPEDNAME));
/openbmc/u-boot/cmd/
H A Dsetexpr.c129 const char *r, const char *s, const char *t, in regex_sub() argument
146 if (t == NULL) { in regex_sub()
153 t = value; in regex_sub()
156 debug("REGEX on %s=%s\n", name, t); in regex_sub()
160 len = strlen(t); in regex_sub()
167 strcpy(data, t); in regex_sub()
196 printf("%s: No match\n", t); in regex_sub()
206 printf("%s=%s\n", name, t); in regex_sub()
/openbmc/linux/arch/arc/include/asm/
H A Dio.h95 #define __raw_readsx(t,f) \ argument
99 bool is_aligned = ((unsigned long)ptr % ((t) / 8)) == 0; \
100 u##t *buf = ptr; \
108 u##t x = __raw_read##f(addr); \
113 u##t x = __raw_read##f(addr); \
158 #define __raw_writesx(t,f) \ argument
162 bool is_aligned = ((unsigned long)ptr % ((t) / 8)) == 0; \
163 const u##t *buf = ptr; \
/openbmc/linux/drivers/md/bcache/
H A Dstats.c150 static void scale_accounting(struct timer_list *t) in scale_accounting() argument
152 struct cache_accounting *acc = from_timer(acc, t, timer); in scale_accounting()
155 unsigned int t = atomic_xchg(&acc->collector.name, 0); \ in scale_accounting()
156 t <<= 16; \ in scale_accounting()
157 acc->five_minute.name += t; \ in scale_accounting()
158 acc->hour.name += t; \ in scale_accounting()
159 acc->day.name += t; \ in scale_accounting()
160 acc->total.name += t; \ in scale_accounting()
/openbmc/openbmc/meta-security/recipes-mac/AppArmor/
H A Dapparmor_3.1.3.bb123 t=${D}/${PTEST_PATH}/testsuite
124 install -d ${t}
125 install -d ${t}/tests/regression/apparmor
128 cp ${B}/parser/apparmor_parser ${t}/parser
129 cp ${B}/parser/frob_slack_rc ${t}/parser
131 install -d ${t}/libraries/libapparmor
132 cp -rf ${B}/libraries/libapparmor ${t}/libraries
134 install -d ${t}/common
135 cp -rf ${B}/common ${t}
137 install -d ${t}/binutils
[all …]
/openbmc/linux/drivers/spi/
H A Dspi-sifive.c168 struct spi_transfer *t) in sifive_spi_prep_transfer() argument
174 cr = DIV_ROUND_UP(clk_get_rate(spi->clk) >> 1, t->speed_hz) - 1; in sifive_spi_prep_transfer()
178 mode = max_t(unsigned int, t->rx_nbits, t->tx_nbits); in sifive_spi_prep_transfer()
181 cr = SIFIVE_SPI_FMT_LEN(t->bits_per_word); in sifive_spi_prep_transfer()
195 if (!t->rx_buf) in sifive_spi_prep_transfer()
205 return 1600000 * spi->fifo_depth <= t->speed_hz * mode; in sifive_spi_prep_transfer()
256 struct spi_transfer *t) in sifive_spi_transfer_one() argument
259 int poll = sifive_spi_prep_transfer(spi, device, t); in sifive_spi_transfer_one()
260 const u8 *tx_ptr = t->tx_buf; in sifive_spi_transfer_one()
261 u8 *rx_ptr = t->rx_buf; in sifive_spi_transfer_one()
[all …]

1...<<31323334353637383940>>...349