| /OK3568_Linux_fs/buildroot/dl/sox/git/scripts/ |
| H A D | crossfade.sh | 83 $SOX "$first_file" -e signed-integer -b 16 fadeout1.wav trim $trim_length $fade_first_opts 105 $SOX "$second_file" -e signed-integer -b 16 fadein1.wav trim 0 $fade_length 126 $SOX crossfade.wav crossfade1.wav trim 0 $crossfade_split_length 127 $SOX crossfade.wav crossfade2.wav trim $crossfade_split_length 131 $SOX "$first_file" -e signed-integer -b 16 song1.wav trim 0 $trim_length 132 $SOX "$second_file" -e signed-integer -b 16 song2.wav trim $fade_length
|
| H A D | crossfade_cat.sh | 76 $SOX "$first_file" -e signed-integer -b 16 fadeout1.wav trim $trim_length 98 $SOX "$second_file" -e signed-integer -b 16 fadein1.wav trim 0 $fade_length 120 $SOX "$first_file" -e signed-integer -b 16 song1.wav trim 0 $trim_length 121 $SOX "$second_file" -e signed-integer -b 16 song2.wav trim $fade_length
|
| H A D | alert.sh | 36 $SOX -c 1 -r 8000 2tones.ul alert.au repeat - trim 0 30
|
| /OK3568_Linux_fs/kernel/arch/mips/boot/dts/cavium-octeon/ |
| H A D | octeon_68xx.dts | 74 cavium,qlm-trim = "4,sgmii"; 83 cavium,qlm-trim = "4,sgmii"; 92 cavium,qlm-trim = "4,sgmii"; 101 cavium,qlm-trim = "4,sgmii"; 118 cavium,qlm-trim = "0,sgmii"; 127 cavium,qlm-trim = "0,sgmii"; 136 cavium,qlm-trim = "0,sgmii"; 145 cavium,qlm-trim = "0,sgmii"; 162 cavium,qlm-trim = "2,sgmii"; 171 cavium,qlm-trim = "2,sgmii"; [all …]
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | parse-maintainers.pl | 101 sub trim { subroutine 153 $line = $1 . ":\t" . trim($2) . "\n"; 158 $case = trim($lastline); 170 trim($lastline) eq "" or die ("Odd non-pattern line '$lastline' for '$case'");
|
| H A D | checkpatch.pl | 670 return trim($string) if ($string =~ /^\s*0[0-7]{3,3}\s*$/); 1171 $name = trim($name); 1186 $comment = trim($comment); 1187 $name = trim($name); 1190 $name_comment = trim($1); 1192 $address = trim($address); 1208 $name_comment = trim($name_comment); 1209 $comment = trim($comment); 1210 $name = trim($name); 1212 $address = trim($address); [all …]
|
| /OK3568_Linux_fs/kernel/drivers/rtc/ |
| H A D | rtc-rs5c372.c | 322 static int rs5c372_get_trim(struct i2c_client *client, int *osc, int *trim) in rs5c372_get_trim() argument 330 if (trim) { in rs5c372_get_trim() 344 *trim = tmp; in rs5c372_get_trim() 472 int err, osc, trim; in rs5c372_rtc_proc() local 474 err = rs5c372_get_trim(to_i2c_client(dev), &osc, &trim); in rs5c372_rtc_proc() 478 seq_printf(seq, "trim\t\t: %d\n", trim); in rs5c372_rtc_proc() 502 int err, trim; in rs5c372_sysfs_show_trim() local 504 err = rs5c372_get_trim(to_i2c_client(dev), NULL, &trim); in rs5c372_sysfs_show_trim() 508 return sprintf(buf, "%d\n", trim); in rs5c372_sysfs_show_trim() 510 static DEVICE_ATTR(trim, S_IRUGO, rs5c372_sysfs_show_trim, NULL);
|
| H A D | rtc-x1205.c | 293 static int x1205_get_dtrim(struct i2c_client *client, int *trim) in x1205_get_dtrim() argument 320 *trim = 0; in x1205_get_dtrim() 323 *trim += 20; in x1205_get_dtrim() 326 *trim += 10; in x1205_get_dtrim() 329 *trim = -*trim; in x1205_get_dtrim() 334 static int x1205_get_atrim(struct i2c_client *client, int *trim) in x1205_get_atrim() argument 369 *trim = (atr * 250) + 11000; in x1205_get_atrim() 371 dev_dbg(&client->dev, "%s: real=%d\n", __func__, *trim); in x1205_get_atrim()
|
| /OK3568_Linux_fs/kernel/kernel/bpf/ |
| H A D | lpm_trie.c | 435 struct lpm_trie_node __rcu **trim, **trim2; in trie_delete_elem() local 453 trim = &trie->root; in trie_delete_elem() 454 trim2 = trim; in trie_delete_elem() 457 *trim, lockdep_is_held(&trie->lock)))) { in trie_delete_elem() 465 trim2 = trim; in trie_delete_elem() 467 trim = &node->child[next_bit]; in trie_delete_elem() 513 rcu_assign_pointer(*trim, rcu_access_pointer(node->child[0])); in trie_delete_elem() 515 rcu_assign_pointer(*trim, rcu_access_pointer(node->child[1])); in trie_delete_elem() 517 RCU_INIT_POINTER(*trim, NULL); in trie_delete_elem()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/ |
| H A D | projecttopbar.js | 79 if (!newBuildTargetInput.val().trim()) { 86 selectedTarget = { name: newBuildTargetInput.val().trim() }; 101 libtoaster.updateProject(null, selectedTarget.name, newBuildTargetInput.val().trim(),
|
| /OK3568_Linux_fs/kernel/drivers/hwmon/ |
| H A D | bt1-pvt.c | 176 static inline void pvt_set_trim(struct pvt_hwmon *pvt, u32 trim) in pvt_set_trim() argument 180 trim = FIELD_PREP(PVT_CTRL_TRIM_MASK, trim); in pvt_set_trim() 184 trim | old); in pvt_set_trim() 648 u32 trim; in pvt_write_trim() local 659 trim = pvt_calc_trim(val); in pvt_write_trim() 660 pvt_set_trim(pvt, trim); in pvt_write_trim() 1008 u32 trim, temp; in pvt_init_iface() local 1053 trim = PVT_TRIM_DEF; in pvt_init_iface() 1056 trim = pvt_calc_trim(temp); in pvt_init_iface() 1058 pvt_set_trim(pvt, trim); in pvt_init_iface()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-kernel/systemtap/systemtap/ |
| H A D | 0001-gcc12-c-compatibility-re-tweak-for-rhel6-use-functio.patch | 30 // trim from start (in place) 40 // trim from end (in place) 49 // trim from both ends (in place)
|
| /OK3568_Linux_fs/buildroot/board/rockchip/rk3566_rk3568/fs-overlay/usr/share/matrix-gui-2.0/html-apps/power-set-frequency-a53/ |
| H A D | set-frequency.php | 13 $output = trim($output); 17 $current_governor = trim($current_governor);
|
| /OK3568_Linux_fs/buildroot/board/forlinx/ok3568/fs-overlay/usr/share/matrix-gui-2.0/html-apps/power-set-frequency-a72/ |
| H A D | set-frequency.php | 13 $output = trim($output); 17 $current_governor = trim($current_governor);
|
| /OK3568_Linux_fs/buildroot/board/forlinx/ok3568/fs-overlay/usr/share/matrix-gui-2.0/html-apps/power-set-frequency-a53/ |
| H A D | set-frequency.php | 13 $output = trim($output); 17 $current_governor = trim($current_governor);
|
| /OK3568_Linux_fs/buildroot/board/rockchip/rk3566_rk3568/fs-overlay/usr/share/matrix-gui-2.0/html-apps/power-set-frequency-a72/ |
| H A D | set-frequency.php | 13 $output = trim($output); 17 $current_governor = trim($current_governor);
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/ieee802154/ |
| H A D | at86rf230.txt | 15 - xtal-trim: u8 value for fine tuning the internal capacitance 26 xtal-trim = /bits/ 8 <0x06>;
|
| /OK3568_Linux_fs/kernel/arch/arm64/boot/dts/socionext/ |
| H A D | uniphier-pxs3.dtsi | 462 usb_rterm0: trim@54,4 { 466 usb_rterm1: trim@55,4 { 470 usb_rterm2: trim@58,4 { 474 usb_rterm3: trim@59,4 { 478 usb_sel_t0: trim@54,0 { 482 usb_sel_t1: trim@55,0 { 486 usb_sel_t2: trim@58,0 { 490 usb_sel_t3: trim@59,0 { 494 usb_hs_i0: trim@56,0 { 498 usb_hs_i2: trim@5a,0 {
|
| H A D | uniphier-ld20.dtsi | 632 usb_rterm0: trim@54,4 { 636 usb_rterm1: trim@55,4 { 640 usb_rterm2: trim@58,4 { 644 usb_rterm3: trim@59,4 { 648 usb_sel_t0: trim@54,0 { 652 usb_sel_t1: trim@55,0 { 656 usb_sel_t2: trim@58,0 { 660 usb_sel_t3: trim@59,0 { 664 usb_hs_i0: trim@56,0 { 668 usb_hs_i2: trim@5a,0 {
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mmc/ |
| H A D | nvidia,tegra20-sdhci.txt | 84 - nvidia,default-trim : Specify the default outbound clock trimmer 86 - nvidia,dqs-trim : Specify DQS trim value for HS400 timing 97 Notes on tap and trim values: 103 - The DQS trim values are only used on controllers which support
|
| /OK3568_Linux_fs/u-boot/drivers/clk/ |
| H A D | clk_pic32.c | 174 u32 div, trim, v; in pic32_set_refclk() local 184 trim = 0; in pic32_set_refclk() 191 trim = (frac >= REFO_TRIM_MAX) ? REFO_TRIM_MAX : (u32)frac; in pic32_set_refclk() 216 v |= (trim << REFO_TRIM_SHIFT); in pic32_set_refclk()
|
| /OK3568_Linux_fs/u-boot/scripts/ |
| H A D | checkpatch.pl | 1046 $name = trim($name); 1061 $name = trim($name); 1063 $address = trim($address); 1079 $name = trim($name); 1081 $address = trim($address); 2085 sub trim { subroutine 3534 …"Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) … 3536 my $decl = trim($sign) . " int "; 3610 my $comment = trim($1); 3684 my $tmp = trim($1); [all …]
|
| /OK3568_Linux_fs/kernel/drivers/phy/socionext/ |
| H A D | phy-uniphier-usb3hs.c | 145 struct uniphier_u3hsphy_trim_param trim; in uniphier_u3hsphy_update_config() local 149 ret = uniphier_u3hsphy_get_nvparams(priv, &trim); in uniphier_u3hsphy_update_config() 158 if (!ret && trim_param_is_valid(&trim)) { in uniphier_u3hsphy_update_config() 159 priv->data->trim_func(priv, pconfig, &trim); in uniphier_u3hsphy_update_config()
|
| /OK3568_Linux_fs/kernel/net/core/ |
| H A D | skmsg.c | 264 int trim = msg->sg.size - len; in sk_msg_trim() local 267 if (trim <= 0) { in sk_msg_trim() 268 WARN_ON(trim < 0); in sk_msg_trim() 275 trim >= msg->sg.data[i].length) { in sk_msg_trim() 276 trim -= msg->sg.data[i].length; in sk_msg_trim() 279 if (!trim) in sk_msg_trim() 283 msg->sg.data[i].length -= trim; in sk_msg_trim() 284 sk_mem_uncharge(sk, trim); in sk_msg_trim()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/fbida/files/ |
| H A D | support-jpeg-turbo.patch | 99 * 4. When "trim" is in effect, the destination's dimensions will be the 1059 + if (info->trim) 1084 + if (info->trim) 1090 + /* transpose does NOT have to trim anything */ 1096 + if (info->trim) { 1105 + if (info->trim) 1112 + if (info->trim) { 1124 + if (info->trim) 1269 - if (MCU_cols > 0) /* can't trim to 0 pixels */ 1345 - if (MCU_rows > 0) /* can't trim to 0 pixels */ [all …]
|