/third_party/toybox/generated/ |
H A D | help.h | 11 #define HELP_toybox_norecurse "When one toybox command calls another, usually it just calls the new\ncommand's main() function rather than searching the $PATH and calling\nexec on another file (which is much slower).\n\nThis disables that optimization, so toybox will run external commands\n even when it has a built-in version of that command. This requires\n toybox symlinks to be installed in the $PATH, or re-invoking the\n \"toybox\" multiplexer command by name." 87 #define HELP_mktemp "usage: mktemp [-dqu] [-p DIR] [TEMPLATE]\n\nSafely create a new file \"DIR/TEMPLATE\" and print its name.\n\n-d Create directory instead of file (--directory)\n-p Put new file in DIR (--tmpdir)\n-q Quiet, no error messages\n-t Prefer $TMPDIR > DIR > /tmp (default DIR > $TMPDIR > /tmp)\n-u Don't create anything, just print what would be created\n\nEach X in TEMPLATE is replaced with a random printable character. The\ndefault TEMPLATE is tmp.XXXXXXXXXX." 127 #define HELP_netstat "usage: netstat [-pWrxwutneal]\n\nDisplay networking information. Default is netstat -tuwx\n\n-r Routing table\n-a All sockets (not just connected)\n-l Listening server sockets\n-t TCP sockets\n-u UDP sockets\n-w Raw sockets\n-x Unix sockets\n-e Extended info\n-n Don't resolve names\n-W Wide display\n-p Show PID/program name of sockets" 133 #define HELP_ifconfig "usage: ifconfig [-aS] [INTERFACE [ACTION...]]\n\nDisplay or configure network interface.\n\nWith no arguments, display active interfaces. First argument is interface\nto operate on, one argument by itself displays that interface.\n\n-a All interfaces displayed, not just active ones\n-S Short view, one line per interface\n\nStandard ACTIONs to perform on an INTERFACE:\n\nADDR[/MASK] - set IPv4 address (1.2.3.4/5) and activate interface\nadd|del ADDR[/LEN] - add/remove IPv6 address (1111::8888/128)\nup|down - activate or deactivate interface\n\nAdvanced ACTIONs (default values usually suffice):\n\ndefault - remove IPv4 address\nnetmask ADDR - set IPv4 netmask via 255.255.255.0 instead of /24\ntxqueuelen LEN - number of buffered packets before output blocks\nmtu LEN - size of outgoing packets (Maximum Transmission Unit)\nbroadcast ADDR - Set broadcast address\npointopoint ADDR - PPP and PPPOE use this instead of \"route add default gw\"\nhw TYPE ADDR - set hardware (mac) address (type = ether|infiniband)\n\nFlags you can set on an interface (or -remove by prefixing with -):\n\narp - don't use Address Resolution Protocol to map LAN routes\npromisc - don't discard packets that aren't to this LAN hardware address\nmulticast - force interface into multicast mode if the driver doesn't\nallmulti - promisc for multicast packets" 165 #define HELP_nproc "usage: nproc [--all]\n\nPrint number of processors.\n\n--all Show all processors, not just ones this task can run on" 197 #define HELP_readlink "usage: readlink FILE...\n\nWith no options, show what symlink points to, return error if not symlink.\n\nOptions for producing canonical paths (all symlinks/./.. resolved):\n\n-e Canonical path to existing entry (fail if missing)\n-f Full path (fail if directory missing)\n-m Ignore missing entries, show where it would be\n-n No trailing newline\n-q Quiet (no output, just error code)" 251 #define HELP_ionice "usage: ionice [-t] [-c CLASS] [-n LEVEL] [COMMAND...|-p PID]\n\nChange the I/O scheduling priority of a process. With no arguments\n(or just -p), display process' existing I/O class/priority.\n\n-c CLASS = 1-3: 1(realtime), 2(best-effort, default), 3(when-idle)\n-n LEVEL = 0-7: (0 is highest priority, default = 5)\n-p Affect existing PID instead of spawning new child\n-t Ignore failure to set I/O priority\n\nSystem default iopriority is generally -c 2 -n 4." 353 #define HELP_stty "usage: stty [-ag] [-F device] SETTING...\n\nGet/set terminal configuration.\n\n-F Open device instead of stdin\n-a Show all current settings (default differences from \"sane\")\n-g Show all current settings usable as input to stty\n\nSpecial characters (syntax ^c or undef): intr quit erase kill eof eol eol2\nswtch start stop susp rprnt werase lnext discard\n\nControl/input/output/local settings as shown by -a, '-' prefix to disable\n\nCombo settings: cooked/raw, evenp/oddp/parity, nl, ek, sane\n\nN set input and output speed (ispeed N or ospeed N for just one)\ncols N set number of columns\nrows N set number of rows\nline N set line discipline\nmin N set minimum chars per read\ntime N set read timeout\nspeed show speed only\nsize show size only" 419 #define HELP_fsck "usage: fsck [-ANPRTV] [-C FD] [-t FSTYPE] [FS_OPTS] [BLOCKDEV]...\n\nCheck and repair filesystems\n\n-A Walk /etc/fstab and check all filesystems\n-N Don't execute, just show what would be done\n-P With -A, check filesystems in parallel\n-R With -A, skip the root filesystem\n-T Don't show title on startup\n-V Verbose\n-C n Write status information to specified file descriptor\n-t TYPE List of filesystem types to check" 499 #define HELP_sed "usage: sed [-inrzE] [-e SCRIPT]...|SCRIPT [-f SCRIPT_FILE]... [FILE...]\n\nStream editor. Apply one or more editing SCRIPTs to each line of input\n(from FILE or stdin) producing output (by default to stdout).\n\n-e Add SCRIPT to list\n-f Add contents of SCRIPT_FILE to list\n-i Edit each file in place (-iEXT keeps backup file with extension EXT)\n-n No default output (use the p command to output matched lines)\n-r Use extended regular expression syntax\n-E POSIX alias for -r\n-s Treat input files separately (implied by -i)\n-z Use \\0 rather than \\n as the input line separator\n\nA SCRIPT is a series of one or more COMMANDs separated by newlines or\nsemicolons. All -e SCRIPTs are concatenated together as if separated\nby newlines, followed by all lines from -f SCRIPT_FILEs, in order.\nIf no -e or -f SCRIPTs are specified, the first argument is the SCRIPT.\n\nEach COMMAND may be preceded by an address which limits the command to\napply only to the specified line(s). Commands without an address apply to\nevery line. Addresses are of the form:\n\n [ADDRESS[,ADDRESS]][!]COMMAND\n\nThe ADDRESS may be a decimal line number (starting at 1), a /regular\nexpression/ within a pair of forward slashes, or the character \"$\" which\nmatches the last line of input. (In -s or -i mode this matches the last\nline of each file, otherwise just th [all...] |
/third_party/typescript/src/services/ |
H A D | completions.ts | 166 TypeKeyword, // Literally just `type`
791 // If is boolean like or undefined, don't return a snippet we want just to return the completion.
822 // TODO(drosen): Right now we just permit *all* semantic meanings when calling
825 // that a suggestion for a value is an interface. We COULD also just do what
1000 else { // Otherwise, just use emitter to print the new nodes.
2105 // There is nothing that precedes the dot, so this likely just a stray character
2106 // or leading into a '...' token. Just bail out instead.
2229 // For JavaScript or TypeScript, if we're not after a dot, then just try to get the
2432 // In javascript files, for union types, we don't just get the members that
3364 // If you're in an interface you don't want to repeat things from super-interface. So just sto [all...] |
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/snowridgex/ |
H A D | uncore-cache.json | 4221 "BriefDescription": "TOR Inserts : Just Hits", 4225 "PublicDescription": "TOR Inserts : Just Hits : Counts the number of entries successfully inserted into the TOR that match qualifications specified by the subevent. Does not include addressless requests such as locks and interrupts.", 4751 "BriefDescription": "TOR Inserts : Just ISOC", 4755 "PublicDescription": "TOR Inserts : Just ISOC : Counts the number of entries successfully inserted into the TOR that match qualifications specified by the subevent. Does not include addressless requests such as locks and interrupts.", 4759 "BriefDescription": "TOR Inserts : Just Local Targets", 4763 "PublicDescription": "TOR Inserts : Just Local Targets : Counts the number of entries successfully inserted into the TOR that match qualifications specified by the subevent. Does not include addressless requests such as locks and interrupts.", 4802 "BriefDescription": "TOR Inserts : Just Misses", 4806 "PublicDescription": "TOR Inserts : Just Misses : Counts the number of entries successfully inserted into the TOR that match qualifications specified by the subevent. Does not include addressless requests such as locks and interrupts.", 4818 "BriefDescription": "TOR Inserts : Just NearMem", 4822 "PublicDescription": "TOR Inserts : Just NearMe [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeIntegerTypes.cpp | 36 /// expansion, we just know that (at least) one result needs promotion. 260 // otherwise just use the promoted result type (NVT). in PromoteIntRes_AtomicCmpSwap() 391 // If any possible shift value won't fit in the prefered type, just use 474 // value was zero. This can be handled by setting the bit just off in PromoteIntRes_CTTZ() 588 // Otherwise, just extend the original operand all the way to the larger type. in PromoteIntRes_INT_EXTEND() 747 // Can just promote the operands then continue with operation. in PromoteIntRes_MULFIX() 917 // Input type isn't promoted, just use the default promoted type. in PromoteIntRes_SETCC() 1409 // x86_fp80, so just turn it into a store+load in PromoteIntOp_BITCAST() 1501 // Integer SCALAR_TO_VECTOR operands are implicitly truncated, so just promote in PromoteIntOp_SCALAR_TO_VECTOR() 1508 // Integer SPLAT_VECTOR operands are implicitly truncated, so just promot in PromoteIntOp_SPLAT_VECTOR() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LoopStrengthReduce.cpp | 437 // Ok, we can't do anything interesting. Just stuff the whole thing into a in DoInitialMatch() 1403 // just add or sub. We'll need to compare final result of AddRec. in RateFormula() 1711 // Strictly speaking it would best to just rely on canonical formulae. in isAMCompletelyFolded() 2210 /// the trip count isn't just 'n', because 'n' might not be positive. And 2364 // post-inc expressions just before the latch is ideal. To reduce live ranges in OptimizeLoopTermCond() 2503 // must dominate all the post-inc comparisons we just set up, and it must in OptimizeLoopTermCond() 3035 /// TODO: Walk the entire domtree within this loop, not just the path to the 3268 // with rather than just N or i, so we can consider the register in CollectFixupsAndInitialFormulae() 3609 // Don't leave just a constant behind in a register if the constant could in GenerateReassociationsImpl() 3654 // Because just Dept in GenerateReassociationsImpl() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 1722 // The CMP instruction is just an alias for SUBS, and representing it as in emitComparison() 1840 /// \param CanNegate Set to true if we can negate the whole sub-tree just by 1912 /// \p Negate is true if we want this sub-tree being negated just by changing 2255 // The signed overflow check requires more than just a simple check for in getAArch64XALUOOp() 2257 // just the sign bits of a negative number. To perform the overflow in getAArch64XALUOOp() 2353 // ... which later gets transformed to just a cset instruction with an in LowerXOR() 4649 // Finally, we can make the call. This is just a degenerate version of a in LowerDarwinGlobalTLSAddress() 4962 // value of a libcall against zero, which is just what the rest of LowerBR_CC in LowerBR_CC() 5541 // is necessary here. Just get the address of the jump table. in LowerJumpTable() 5556 // is necessary here. Just ge in LowerBR_JT() [all...] |
/kernel/linux/linux-5.10/drivers/firewire/ |
H A D | ohci.c | 1486 /* This packet was cancelled, just continue. */ in handle_at_packet() 2012 * Check the consistency of the self IDs we just read. The in bus_reset_work() 2439 * means that we just reuse the old config rom. in ohci_enable() 2537 * OTOH, if there is a pending config_rom update, just in ohci_set_config_rom() 2684 * We might be called just after the cycle timer has wrapped in ohci_read_csr() 2685 * around but just before the cycle64Seconds handler, so we in ohci_read_csr() 3716 /* JMicron JMB38x often shows 0 at first read, just ignore it */ in pci_probe()
|
/kernel/linux/linux-5.10/Documentation/power/ |
H A D | pci.rst | 130 device by hardware just as at initial power up. 420 example, it is called right after the device has just been resumed), in which 489 state. Just like in the runtime PM case described above, the mechanism of 644 image kernel. For this purpose all devices are frozen just like before creating 720 has just been loaded into memory. 910 This callback is analogous to resume(), just like restore_noirq() is analogous 1075 just needs to call a function that decrements the devices usage counter
|
/kernel/linux/linux-5.10/drivers/net/ethernet/ibm/emac/ |
H A D | core.c | 63 * complexity just for the sake of following some abstract API, when it doesn't 82 * contents into it instead of just sending original big skb up 104 * just a matter of making everybody's life easier. Since we are doing 967 * timeout handler eventually, but this is just gross). in __emac_set_multicast_list() 971 * we need is just to stop RX channel. This seems to work on all in __emac_set_multicast_list() 974 * If we need the full reset, we might just trigger the workqueue in __emac_set_multicast_list() 1903 /* I'm just being paranoid here :) */ in emac_peek_rx_sg()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/ |
H A D | ice_txrx.c | 814 * It will just attach the page as a frag to the skb. 1387 * bulk mode and we are receiving 4 or fewer packets just in ice_update_itr() 1424 * working out "just right". Just report that our current in ice_update_itr() 1444 * number of packets is greater than 256. We are just going to have in ice_update_itr() 1518 /* set current to what we just wrote and dynamic if needed */ in ice_update_ena_itr() 1694 /* Check again in a case another CPU has just made room available. */ in __ice_maybe_stop_tx()
|
/kernel/linux/linux-6.6/Documentation/power/ |
H A D | pci.rst | 130 device by hardware just as at initial power up. 420 example, it is called right after the device has just been resumed), in which 489 state. Just like in the runtime PM case described above, the mechanism of 644 image kernel. For this purpose all devices are frozen just like before creating 720 has just been loaded into memory. 910 This callback is analogous to resume(), just like restore_noirq() is analogous 1075 just needs to call a function that decrements the devices usage counter
|
/kernel/linux/linux-5.10/drivers/media/dvb-core/ |
H A D | dvb_frontend.c | 83 * FESTATE_DISEQC. A DISEQC command has just been issued. 492 /* if we've got no parameters, just keep idling */ in dvb_frontend_swzigzag() 499 /* in SCAN mode, we just set the frontend when asked and leave it alone */ in dvb_frontend_swzigzag() 600 /* if we've just re-tuned, enter the ZIGZAG_FAST state. in dvb_frontend_swzigzag() 1607 * using a DVB-S2 only frontend just like it were a DVB-S, if the frontend 1752 * This routine should work fine for frontends that support just one delivery 1779 * Trivial case: just use the current one, if it already a DVBv3 in dvbv3_set_delivery_system()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gem/ |
H A D | i915_gem_execbuffer.c | 90 * but this remains just a hint as the kernel may choose a new location for 212 * foot.) Serialisation may just result in the request being inserted into 216 * After all of that, is just a matter of closing the request and handing it to 1852 * relocation processing next time. Just in case the target in eb_copy_relocations() 1937 * 1 - we try to just prefault all the user relocation entries and in eb_relocate_parse_slow() 2766 * just ignore the point and carry on. in add_timeline_fence_array() 3266 * Legacy execbuffer just creates an exec2 list from the original exec object
|
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/hns3vf/ |
H A D | hclgevf_main.c | 1352 * one into it, just check the mac addr state, convert it to a new in hclgevf_update_mac_list() 1353 * new state, or just remove it, or do nothing. in hclgevf_update_mac_list() 1470 * send TO_ADD request failed, so just remove the mac node. in hclgevf_sync_from_add_list() 1498 * of sending mac addr configurrequest to PF, so just in hclgevf_sync_from_del_list() 1612 * handle mailbox. Just record the vlan id, and remove it after in hclgevf_set_vlan_filter() 2346 * register, so we should just write 0 to the bit we are in hclgevf_check_evt_cause() 3023 "Just %u msi resources, not enough for vf(min:2).\n", in hclgevf_query_vf_resource()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/ |
H A D | ef10.c | 246 /* If we failed to set the workaround just carry on. */ in efx_ef10_get_timer_workarounds() 849 /* This is non-fatal; the TX path just in efx_ef10_link_piobufs() 1192 * page size is >4K). So we may allocate some extra VIs just in efx_ef10_dimension_resources() 1958 /* In atomic context, cannot update HW stats. Just update the in efx_ef10_update_stats_atomic_vf() 2100 * reboot just once, so we must only do that once we in efx_ef10_mcdi_poll_reboot() 3835 * it goes, this just avoids an unnecessary error in efx_ef10_set_udp_tnl_ports() 3914 /* SW table may not match HW state, so just assume we can't in efx_ef10_udp_tnl_has_port()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/dpaa/ |
H A D | dpaa_eth.c | 946 * just ignore the extra ones. in dpaa_fq_setup() 1096 /* Set a fixed overhead accounting, just like for the in dpaa_fq_init() 1888 * available, so just use that for offset. in skb_to_contig_fd() 2080 /* linear buffers just need to have an aligned start */ in dpaa_a050385_wa() 2201 /* Just create a S/G fd based on the skb */ in dpaa_start_xmit() 2397 * system memory. Just release the frame back into the pool, in rx_default_dqrr() 2807 * We won't be sending congestion notifications to FMan; for now, we just use
|
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb4vf/ |
H A D | cxgb4vf_main.c | 143 * status matches the new status, just return. in t4vf_os_link_changed() 586 * we have MSI-X, otherwise just one queue set per port. 1590 * multi-queue devices, we just return the current values associated with the 2429 * debugfs_remove_recursive(). We just need to clean up any ancillary in cleanup_debugfs() 2458 * crash the kernel or anything silly just because of that. in size_nports_qsets() 2533 * into the adapter. We just have to live with them ... Note that in adap_init0() 2577 * firmware won't understand this and we'll just get in adap_init0()
|
/kernel/linux/linux-5.10/drivers/scsi/ |
H A D | libiscsi.c | 606 /* it was never sent so just complete like normal */ in fail_scsi_task() 1063 * Just resend. in iscsi_handle_reject() 1076 * and transport are ok so just clean up in iscsi_handle_reject() 1970 * to complete so the ping is just stuck behind it in a queue. 2205 * complete or timeout. The caller just wants to know what's running in iscsi_conn_unbind() 2403 * Just check if we are not logged in. We cannot check for in iscsi_eh_device_reset() 2565 * Just check if we are not logged in. We cannot check for in iscsi_eh_target_reset()
|
H A D | wd33c93.c | 827 * seek, or just to be nice and let other devices have in wd33c93_intr() 867 * at _once_. ...just so you know why the restore_flags() in wd33c93_intr() 1072 * our reply should be, we're just gonna say that we have a in wd33c93_intr() 1164 * have been turned off for the command that just completed. in wd33c93_intr() 1251 * have been turned off for the command that just completed. in wd33c93_intr() 1283 * have been turned off for the command that just completed. in wd33c93_intr() 1717 * we're not going to expend much effort here: Let's just return in wd33c93_abort()
|
/kernel/linux/linux-5.10/drivers/tty/ |
H A D | tty_io.c | 639 * cannot just call hangup() because that will cause in __tty_hangup() 641 * So we just call close() the right number of times. in __tty_hangup() 1059 * tty_write_message - write a message to a certain tty, not just the console. 1139 * We know the redirected tty is just another tty, we can can in redirected_tty_write() 1446 * If we fail here just call release_tty to clean up. No need in tty_init_dev() 2345 * this is just advisory information but for the Linux console it 2412 * Locking: see tty_set_ldisc, this function is just a helper
|
/kernel/linux/linux-5.10/drivers/tty/serial/ |
H A D | atmel_serial.c | 886 * xmit is a circular buffer so, if we have just send data from in atmel_complete_tx_dma() 943 * and it is one page... Just adjust in atmel_tx_dma() 1311 * PDC receive. Just schedule the tasklet and let it in atmel_handle_receive() 1634 * is unsigned, we just need a one-way comparison to in atmel_rx_from_pdc() 1637 * In this case, we just need to consume the entire in atmel_rx_from_pdc() 2037 * in uart_flush_buffer(), the xmit circular buffer has just in atmel_flush_buffer() 2853 * which is just a wrapper over the atmel_serial driver and in atmel_serial_probe()
|
/kernel/linux/linux-5.10/fs/ |
H A D | fs-writeback.c | 599 * @wbc: writeback_control of the just finished writeback 826 * may not make sense, just use the original @nr_pages in those in wb_split_bdi_pages() 1120 * We just wake up the flusher thread. It will perform background in wb_start_background_writeback() 1275 /* just one sb in list, splice to dispatch_queue and we're done */ in move_expired_inodes() 1846 * just walks the superblock inode list, writing back any inodes which are 1933 * we'll just busyloop. in wb_writeback() 2283 * If the inode is queued for writeback by flush worker, just in __mark_inode_dirty()
|
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | qgroup.c | 973 * just return success and release the transaction handle. in btrfs_quota_enable() 1094 * don't need to do the btrfs_next_item, just in btrfs_quota_enable() 1172 * everything we did in the transaction we just committed. in btrfs_quota_enable() 1318 * excl/rfer just get added/removed. 1396 * In that case, just update all parent will be enough. 2641 * we can't just exit here. in btrfs_qgroup_account_extent() 3303 /* For rescan, just pass old_roots as NULL */ in qgroup_rescan_leaf()
|
/kernel/linux/linux-5.10/mm/ |
H A D | filemap.c | 402 * be waited upon, and not just skipped over. 697 * then just quickly return 0. The file is all caught up. 1017 * we have multiple different kinds of waits, not just the usual "exclusive" 1024 * We're just waiting for the bit to be released, and when a waker 1432 * not support that special operation, we just do this all by hand 1455 * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep. 3460 * We don't know how much we wrote, so just return in __generic_file_write_iter()
|
H A D | migrate.c | 92 * or just got freed under us. in isolate_movable_page() 334 * a ref. Use get_page_unless_zero(), and just fault again if it fails. in __migration_entry_wait() 1095 * just care Anon page here. in __unmap_and_move() 1112 * This is much like races on refcount of oldpage: just don't BUG(). in __unmap_and_move() 2478 * a reference just above. in migrate_vma_collect_pmd() 2791 * just like for regular migration. 2969 * just back off. in migrate_vma_insert_page()
|