| /OK3568_Linux_fs/buildroot/dl/sox/git/scripts/ |
| H A D | synth.sh | 44 r="$sox -n -p trim 0 .25" 45 r2="$sox -n -p trim 0 .5" 46 r3="$sox -n -p trim 0 .75" 50 \"|$sox -n -p synth noise fade 0 .5 .48 trim 0 .15\" \ 60 \"|$sox -n -p trim 0 1.4\" \ 74 \"|$sox -n -p trim 0 8\" \ 75 \"|$l pl %7 $o trim 0 .25\" \ 76 \"|$l pl %12 $o trim 0 .2\" \ 77 \"|$l pl %10 $o trim 0 .5 bend .2,-300,.1\" \ 78 \"|$l pl %5 $o trim 0 .5 bend .2,-200,.1\" \ [all …]
|
| 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
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/ |
| H A D | trim.hpp | 1 // Boost string_algo library trim.hpp header file ---------------------------// 22 #include <boost/algorithm/string/detail/trim.hpp> 27 Defines trim algorithms. 28 Trim algorithms are used to remove trailing and leading spaces from a 41 // left trim -----------------------------------------------// 44 //! Left trim - parametric 79 //! Left trim - parametric 94 //! Left trim - parametric 114 //! Left trim 134 //! Left trim [all …]
|
| /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/u-boot/drivers/clk/ |
| H A D | clk_pic32.c | 61 /* Reference Oscillator Trim Register Fields */ 174 u32 div, trim, v; in pic32_set_refclk() local 180 * rate = parent_rate / [2 * (div + (trim / 512))] in pic32_set_refclk() 184 trim = 0; in pic32_set_refclk() 191 trim = (frac >= REFO_TRIM_MAX) ? REFO_TRIM_MAX : (u32)frac; in pic32_set_refclk() 213 /* apply trim */ in pic32_set_refclk() 216 v |= (trim << REFO_TRIM_SHIFT); in pic32_set_refclk() 245 /* get trim */ in pic32_get_refclk() 266 * rate = parent_rate / [2 * (div + (trim / 512))] in pic32_get_refclk()
|
| /OK3568_Linux_fs/kernel/fs/jfs/ |
| H A D | jfs_discard.c | 20 * FUNCTION: TRIM the specified block range on device, if supported 54 * FUNCTION: attempt to discard (TRIM) all free blocks from the 76 * start: First Byte to trim in jfs_ioc_trim() 77 * len: number of Bytes to trim from start in jfs_ioc_trim() 95 * we trim all ag's within the range in jfs_ioc_trim()
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-ata | 124 What: /sys/class/ata_device/devX[.Y].Z/trim 129 (RO) Shows the DSM TRIM mode currently used by the device. Valid 132 unsupported: Drive does not support DSM TRIM 134 unqueued: Drive supports unqueued DSM TRIM only 136 queued: Drive supports queued DSM TRIM 139 be buggy and only unqueued TRIM commands
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | oe-trim-schemas | 25 print('oe-trim-schemas: error: the following arguments are required: schema\n' 26 'Usage: oe-trim-schemas schema\n\n' 27 'OpenEmbedded trim schemas - remove unneeded schema locale translations\n' 30 ' schema gconf schema file to trim\n')
|
| /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() 331 dev_dbg(&client->dev, "%s: raw trim=%x\n", __func__, tmp); 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() [all …]
|
| 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/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/kernel/drivers/hwmon/ |
| H A D | bt1-pvt.h | 70 * @PVT_TRIM_MIN: Minimal temperature sensor trim value. 71 * @PVT_TRIM_MAX: Maximal temperature sensor trim value. 72 * @PVT_TRIM_DEF: Default temperature sensor trim value (set a proper value 74 * @PVT_TRIM_TEMP: Maximum temperature encoded by the trim factor. 75 * @PVT_TRIM_STEP: Temperature stride corresponding to the trim value.
|
| H A D | bt1-pvt.c | 154 * getting back enabled. The same concerns the temperature trim and 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() 244 * Lock the interface mutex to serialize trim, timeouts and alarm in pvt_soft_isr() 648 u32 trim; in pvt_write_trim() local 652 * Serialize trim update, since a part of the register is changed and in pvt_write_trim() 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 [all …]
|
| /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/kernel/Documentation/admin-guide/ |
| H A D | jfs.rst | 53 This enables/disables the use of discard/TRIM commands. 54 The discard/TRIM commands are sent to the underlying 59 a TRIM command to the block device is considered useful.
|
| /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'");
|
| /OK3568_Linux_fs/kernel/fs/ocfs2/ |
| H A D | dlmglue.h | 74 u8 tf_success; /* trim is successful, or not */ 76 u64 tf_start; /* trim start offset in clusters */ 77 u64 tf_len; /* trim end offset in clusters */ 78 u64 tf_minlen; /* trim minimum contiguous free clusters */
|
| /OK3568_Linux_fs/kernel/drivers/clk/microchip/ |
| H A D | clk-core.c | 57 /* Reference Oscillator Trim Register Fields */ 299 /* fout = fin / [2 * {div + (trim / 512)}] in roclk_calc_rate() 300 * = fin * 512 / [1024 * div + 2 * trim] in roclk_calc_rate() 301 * = fin * 256 / (512 * div + trim) in roclk_calc_rate() 302 * = (fin << 8) / ((div << 9) + trim) in roclk_calc_rate() 368 /* get trim */ in roclk_recalc_rate() 482 u32 trim, rodiv, v; in roclk_set_rate_and_parent() local 486 roclk_calc_div_trim(rate, parent_rate, &rodiv, &trim); in roclk_set_rate_and_parent() 488 pr_debug("parent_rate = %lu, rate = %lu, div = %d, trim = %d\n", in roclk_set_rate_and_parent() 489 parent_rate, rate, rodiv, trim); in roclk_set_rate_and_parent() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/hal/phydm/halrf/ |
| H A D | halrf_kfree.c | 147 RF_DBG(dm, DBG_RF_MP, "[kfree] 8821c thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8821c() 181 RF_DBG(dm, DBG_RF_MP, "[kfree] 8821c power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8821c() 275 RF_DBG(dm, DBG_RF_MP, "[kfree] 8822b thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8822b() 336 RF_DBG(dm, DBG_RF_MP, "[kfree] 8822b power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8822b() 495 "[kfree] 8822b clear power trim 0x55[19:14]=0x%X path=%d\n", in phydm_clear_kfree_to_rf_8822b() 520 RF_DBG(dm, DBG_RF_MP, "[kfree] 8710b thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8710b() 546 RF_DBG(dm, DBG_RF_MP, "[kfree] 8710b power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8710b() 579 "[kfree] 8710b clear power trim 0x55[19:14]=0x%X path=%d\n", in phydm_clear_kfree_to_rf_8710b() 604 RF_DBG(dm, DBG_RF_MP, "[kfree] 8192f thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8192f() 667 RF_DBG(dm, DBG_RF_MP, "[kfree] 8192F power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8192f() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/hal/phydm/halrf/ |
| H A D | halrf_kfree.c | 146 RF_DBG(dm, DBG_RF_MP, "[kfree] 8821c thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8821c() 180 RF_DBG(dm, DBG_RF_MP, "[kfree] 8821c power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8821c() 274 RF_DBG(dm, DBG_RF_MP, "[kfree] 8822b thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8822b() 335 RF_DBG(dm, DBG_RF_MP, "[kfree] 8822b power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8822b() 494 "[kfree] 8822b clear power trim 0x55[19:14]=0x%X path=%d\n", in phydm_clear_kfree_to_rf_8822b() 519 RF_DBG(dm, DBG_RF_MP, "[kfree] 8710b thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8710b() 545 RF_DBG(dm, DBG_RF_MP, "[kfree] 8710b power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8710b() 578 "[kfree] 8710b clear power trim 0x55[19:14]=0x%X path=%d\n", in phydm_clear_kfree_to_rf_8710b() 603 RF_DBG(dm, DBG_RF_MP, "[kfree] 8192f thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8192f() 666 RF_DBG(dm, DBG_RF_MP, "[kfree] 8192F power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8192f() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/hal/phydm/halrf/ |
| H A D | halrf_kfree.c | 146 RF_DBG(dm, DBG_RF_MP, "[kfree] 8821c thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8821c() 180 RF_DBG(dm, DBG_RF_MP, "[kfree] 8821c power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8821c() 274 RF_DBG(dm, DBG_RF_MP, "[kfree] 8822b thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8822b() 335 RF_DBG(dm, DBG_RF_MP, "[kfree] 8822b power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8822b() 494 "[kfree] 8822b clear power trim 0x55[19:14]=0x%X path=%d\n", in phydm_clear_kfree_to_rf_8822b() 519 RF_DBG(dm, DBG_RF_MP, "[kfree] 8710b thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8710b() 545 RF_DBG(dm, DBG_RF_MP, "[kfree] 8710b power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8710b() 578 "[kfree] 8710b clear power trim 0x55[19:14]=0x%X path=%d\n", in phydm_clear_kfree_to_rf_8710b() 603 RF_DBG(dm, DBG_RF_MP, "[kfree] 8192f thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8192f() 666 RF_DBG(dm, DBG_RF_MP, "[kfree] 8192F power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8192f() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/hal/phydm/halrf/ |
| H A D | halrf_kfree.c | 146 RF_DBG(dm, DBG_RF_MP, "[kfree] 8821c thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8821c() 180 RF_DBG(dm, DBG_RF_MP, "[kfree] 8821c power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8821c() 274 RF_DBG(dm, DBG_RF_MP, "[kfree] 8822b thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8822b() 335 RF_DBG(dm, DBG_RF_MP, "[kfree] 8822b power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8822b() 494 "[kfree] 8822b clear power trim 0x55[19:14]=0x%X path=%d\n", in phydm_clear_kfree_to_rf_8822b() 519 RF_DBG(dm, DBG_RF_MP, "[kfree] 8710b thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8710b() 545 RF_DBG(dm, DBG_RF_MP, "[kfree] 8710b power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8710b() 578 "[kfree] 8710b clear power trim 0x55[19:14]=0x%X path=%d\n", in phydm_clear_kfree_to_rf_8710b() 603 RF_DBG(dm, DBG_RF_MP, "[kfree] 8192f thermal trim flag:0x%02x\n", in phydm_get_thermal_trim_offset_8192f() 666 RF_DBG(dm, DBG_RF_MP, "[kfree] 8192F power trim flag:0x%02x\n", in phydm_get_power_trim_offset_8192f() [all …]
|
| /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() 292 /* If we trim data a full sg elem before curr pointer update in sk_msg_trim() 359 /* Revert iov_iter updates, msg will need to use 'trim' later if it in sk_msg_zerocopy_from_iter() [all …]
|
| /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(),
|