/openbmc/linux/scripts/genksyms/ |
H A D | lex.l | 138 repeat: 165 goto repeat; 184 goto repeat; 188 goto repeat; 192 goto repeat; 207 goto repeat; 222 goto repeat; 230 goto repeat; 249 goto repeat; 257 goto repeat; [all …]
|
/openbmc/linux/fs/jffs2/ |
H A D | compr_rtime.c | 89 int repeat; in jffs2_rtime_decompress() local 93 repeat = data_in[pos++]; in jffs2_rtime_decompress() 97 if (repeat) { in jffs2_rtime_decompress() 98 if ((outpos + repeat) > destlen) { in jffs2_rtime_decompress() 101 if (backoffs + repeat >= outpos) { in jffs2_rtime_decompress() 102 while(repeat) { in jffs2_rtime_decompress() 104 repeat--; in jffs2_rtime_decompress() 107 memcpy(&cpage_out[outpos],&cpage_out[backoffs],repeat); in jffs2_rtime_decompress() 108 outpos+=repeat; in jffs2_rtime_decompress()
|
/openbmc/u-boot/fs/jffs2/ |
H A D | compr_rtime.c | 66 int repeat; in rtime_decompress() local 70 repeat = data_in[pos++]; in rtime_decompress() 74 if (repeat) { in rtime_decompress() 75 if (backoffs + repeat >= outpos) { in rtime_decompress() 76 while(repeat) { in rtime_decompress() 78 repeat--; in rtime_decompress() 81 for (i = 0; i < repeat; i++) in rtime_decompress() 83 outpos+=repeat; in rtime_decompress()
|
/openbmc/openbmc-tools/bi2cp/ |
H A D | bi2cp | 308 def __init__(self, command, start, repeat): argument 309 assert repeat.record == I2CRecord.READ 312 self.repeat = repeat 313 assert start.address == repeat.address 317 start, end = 0, len(repeat.data.data) 319 start, end = 1, repeat.data.data[0] + 1 323 self.data = repeat.data.data[start:end] 324 tail = repeat.data.data[end:] 331 self.response = repeat.data.response 337 smbus_pec_pack_address(self.repeat.address, self.repeat.record), [all …]
|
/openbmc/rest-dbus/resources/ |
H A D | jstree.style.css | 1 …repeat:no-repeat}.vakata-context li>a:focus{outline:0}.vakata-context .vakata-context-hover>a{posi…
|
/openbmc/linux/net/bpf/ |
H A D | test_run.c | 61 u32 repeat, int *err, u32 *duration) in bpf_test_timer_continue() argument 65 if (t->i >= repeat) { in bpf_test_timer_continue() 283 u32 repeat) in xdp_test_run_batch() argument 294 batch_sz = min_t(u32, repeat, xdp->batch_size); in xdp_test_run_batch() 366 u32 repeat, u32 batch_size, u32 *time) in bpf_test_run_xdp_live() argument 373 if (!repeat) in bpf_test_run_xdp_live() 374 repeat = 1; in bpf_test_run_xdp_live() 383 ret = xdp_test_run_batch(&xdp, prog, repeat - t.i); in bpf_test_run_xdp_live() 386 } while (bpf_test_timer_continue(&t, xdp.frame_cnt, repeat, &ret, time)); in bpf_test_run_xdp_live() 393 static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat, in bpf_test_run() argument [all …]
|
/openbmc/qemu/scripts/codeconverter/codeconverter/ |
H A D | regexps.py | 21 def P(*regexps, name=None, capture=False, repeat='') -> str: argument 22 """Just add parenthesis around regexp(s), with optional name or repeat suffix""" 25 return f'(?P<{name}>{s}){repeat}' 27 return f'({s}){repeat}' 29 return f'(?:{s}){repeat}' 53 r = P(*regexps, repeat=n) 85 CPP_SPACE = OR(r'\s', r'\\\n', repeat='+')
|
/openbmc/openbmc-test-automation/ipmi/ |
H A D | test_ipmi_resets.robot | 24 Repeat Keyword ${LOOP_COUNT} times IPMI MC Reset Warm (off) 31 Repeat Keyword ${LOOP_COUNT} times IPMI MC Reset Cold (run) 38 Repeat Keyword ${LOOP_COUNT} times IPMI Power Cycle 45 Repeat Keyword ${LOOP_COUNT} times IPMI Power Reset
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-class-led-trigger-pattern | 29 What: /sys/class/leds/<led>/repeat 33 Specify a pattern repeat number. -1 means repeat indefinitely, 36 This file will always return the originally written repeat
|
/openbmc/linux/sound/core/ |
H A D | ump_convert.c | 33 u16 val, repeat; in upscale_7_to_16bit() local 38 repeat = src & 0x3f; in upscale_7_to_16bit() 39 return val | (repeat << 3) | (repeat >> 3); in upscale_7_to_16bit() 44 u32 val, repeat; in upscale_7_to_32bit() local 49 repeat = src & 0x3f; in upscale_7_to_32bit() 50 return val | (repeat << 19) | (repeat << 13) | in upscale_7_to_32bit() 51 (repeat << 7) | (repeat << 1) | (repeat >> 5); in upscale_7_to_32bit() 56 u32 val, repeat; in upscale_14_to_32bit() local 61 repeat = src & 0x1fff; in upscale_14_to_32bit() 62 return val | (repeat << 5) | (repeat >> 8); in upscale_14_to_32bit()
|
/openbmc/linux/drivers/leds/trigger/ |
H A D | ledtrig-pattern.c | 31 int repeat; member 43 data->repeat--; in pattern_trig_update_patterns() 79 if (!data->is_indefinite && !data->repeat) in pattern_trig_timer_function() 129 data->npatterns, data->repeat); in pattern_trig_start_pattern() 150 int repeat; in repeat_show() local 154 repeat = data->last_repeat; in repeat_show() 158 return sysfs_emit(buf, "%d\n", repeat); in repeat_show() 183 data->last_repeat = data->repeat = res; in repeat_store() 184 /* -1 means repeat indefinitely */ in repeat_store() 185 if (data->repeat == -1) in repeat_store() [all …]
|
/openbmc/linux/sound/usb/line6/ |
H A D | midibuf.c | 130 int repeat = 0; in line6_midibuf_read() local 173 repeat = 1; in line6_midibuf_read() 224 memcpy(data + repeat, this->buf + this->pos_read, length); in line6_midibuf_read() 229 memcpy(data + repeat, this->buf + this->pos_read, length1); in line6_midibuf_read() 230 memcpy(data + repeat + length1, this->buf, length2); in line6_midibuf_read() 234 if (repeat) in line6_midibuf_read() 238 return length + repeat; in line6_midibuf_read()
|
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | prog_run_opts.c | 31 .repeat = 1, in test_prog_run_opts() 56 run_cnt += topts.repeat; in test_prog_run_opts() 61 topts.repeat = 2; in test_prog_run_opts() 69 run_cnt += topts.repeat; in test_prog_run_opts()
|
H A D | rbtree.c | 17 .repeat = 1, in test_rbtree_add_nodes() 39 .repeat = 1, in test_rbtree_add_and_remove() 61 .repeat = 1, in test_rbtree_first_and_remove() 85 .repeat = 1, in test_rbtree_api_release_aliasing()
|
/openbmc/phosphor-webui/app/redfish/controllers/ |
H A D | redfish-controller.html | 11 <li ng-repeat="(key, value) in redfishData" ng-include="'recurse'"> </li> 21 <li ng-repeat="(key, value) in value" ng-include="'recurse'"> </li> 28 <div ng-repeat="val in value" class="value"> 32 <li ng-repeat="(key, value) in val" ng-include="'recurse'"> </li>
|
/openbmc/linux/drivers/accel/habanalabs/include/common/ |
H A D | qman_if.h | 28 * BD_CTL_REPEAT_VALID tells the CP whether the repeat field in the BD CTL is 29 * valid. 1 means the repeat field is valid, 0 means not-valid, 30 * i.e. repeat == 1
|
/openbmc/linux/kernel/power/ |
H A D | suspend_test.c | 78 repeat: in test_wakealarm() 118 goto repeat; in test_wakealarm() 153 char *repeat; in setup_test_suspend() local 162 repeat = strsep(&value, ","); in setup_test_suspend() 163 if (repeat) { in setup_test_suspend() 164 if (kstrtou32(repeat, 0, &test_repeat_count_max)) in setup_test_suspend()
|
/openbmc/linux/drivers/media/rc/img-ir/ |
H A D | img-ir-hw.h | 129 #define IMG_IR_REPEATCODE 1 /* repeat the previous code */ 152 * @repeat: Maximum repeat interval (always in milliseconds). 158 * Returns IMG_IR_REPEATCODE to repeat previous code. 171 unsigned int repeat; member 193 * @rtimings: Processed repeat timings. 218 * @end_timer: Timer until repeat timeout.
|
H A D | img-ir-sanyo.c | 26 /* a repeat code has no data */ in img_ir_sanyo_scancode() 109 /* repeat codes */ 110 .repeat = 108, /* 108 ms */ 118 .minlen = 0, /* repeat code has no data */
|
/openbmc/openbmc-test-automation/redfish/service_root/ |
H A D | test_sessions_connection.robot | 31 Repeat Keyword ${duration} Send Heartbeat 42 Repeat Keyword ${duration} Check Connection On Reboot 61 Repeat Keyword ${reboot_interval} Send Heartbeat
|
/openbmc/linux/drivers/usb/host/ |
H A D | xhci-mtk.h | 60 * (@repeat==1) scheduled within the interval 73 * @repeat: the time gap between two uframes that transfers are 82 * according to @pkts and @repeat, repeate the burst multiple 84 * according to @pkts and @repeat. normal mode is used by 107 u32 repeat; member
|
/openbmc/linux/drivers/media/pci/solo6x10/ |
H A D | solo6x10-p2m.c | 30 int repeat, u32 ext_size) in solo_p2m_dma() argument 46 repeat, ext_size); in solo_p2m_dma() 126 int repeat, u32 ext_size) in solo_p2m_fill_desc() argument 135 if (repeat) { in solo_p2m_fill_desc() 138 SOLO_P2M_REPEAT(repeat); in solo_p2m_fill_desc() 147 int repeat, u32 ext_size) in solo_p2m_dma_t() argument 151 solo_p2m_fill_desc(&desc[1], wr, dma_addr, ext_addr, size, repeat, in solo_p2m_dma_t()
|
/openbmc/linux/tools/testing/selftests/lkdtm/ |
H A D | run.sh | 59 repeat=1 63 if echo "$expect" | grep -q '^repeat:' ; then 64 repeat=$(echo "$expect" | cut -d' ' -f1 | cut -d: -f2) 92 for i in $(seq 1 $repeat); do
|
/openbmc/u-boot/common/ |
H A D | iomux.c | 29 int i, j, k, io_flag, cs_idx, repeat; in iomux_doenv() local 107 repeat = 0; in iomux_doenv() 110 repeat++; in iomux_doenv() 114 if (repeat) in iomux_doenv()
|
/openbmc/qemu/ui/ |
H A D | input-barrier.c | 302 read_short(msg->repeat.keyid, p, len); in readcmd() 303 read_short(msg->repeat.modifier, p, len); in readcmd() 304 read_short(msg->repeat.repeat, p, len); in readcmd() 305 msg->repeat.button = 0; in readcmd() 307 read_short(msg->repeat.button, p, len); in readcmd() 439 for (i = 0; i < msg->repeat.repeat; i++) { in writecmd() 441 input_barrier_to_qcode(msg->repeat.keyid, msg->repeat.button), in writecmd() 444 input_barrier_to_qcode(msg->repeat.keyid, msg->repeat.button), in writecmd()
|