HomeSort by relevance Sort by last modified time
    Searched refs:If (Results 226 - 250 of 3291) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
nilcheck_test.go 36 If(booln(i), blockn(i+1), "exit"),
77 If("bool1", "secondCheck", "exit")),
80 If("bool2", "extra", "exit")),
95 if b == fun.blocks["secondCheck"] && isNilCheck(b) {
114 If("bool1", "secondCheck", "exit")),
119 If("bool2", "extra", "exit")),
132 if b == fun.blocks["secondCheck"] && isNilCheck(b) {
150 If("bool1", "extra", "exit")),
165 if b == fun.blocks["checkPtr"] && isNilCheck(b) {
184 If("bool1", "extra", "exit"))
    [all...]
redblack32.go 29 if t.root == nil {
37 if t.left != nil {
41 if t.right != nil {
53 // If x is a node with a parent, then x.rank <= x.parent.rank <= x.rank+1.
54 // If x is a node with a grandparent, then x.rank < x.parent.parent.rank.
55 // If x is an "external [null] node", then x.rank = 0 && x.parent.rank = 1.
77 if t.root == nil {
84 if n == nil {
91 if n == nil {
102 if n == nil
    [all...]
shortcircuit.go 12 // Step 1: Replace a phi arg with a constant if that arg
13 // is the control value of a preceding If block.
15 // If a goto b2 else b3
23 if v.Op != OpPhi {
26 if !v.Type.IsBoolean() {
32 if p.Kind != BlockIf {
35 if p.Control != a {
38 if e.i == 0 {
39 if ct == nil {
44 if cf == nil
    [all...]
  /external/autotest/site_utils/
server_manager_utils.py 31 """Check if use_server_db is enabled in configuration.
33 @return: True if use_server_db is set to True in global config.
40 """Post a warning if Autotest instance has no other primary server with
50 if not servers:
68 if hostname:
70 if role:
72 if status:
104 if server.date_modified is None:
176 if server not in servers_with_roles]
180 if servers_without_roles
    [all...]
  /external/tensorflow/tensorflow/core/ops/
debug_ops.cc 41 N.B.: If the all downstream attached debug ops are disabled given the current
70 N.B.: If the all downstream attached debug ops are disabled given the current
106 gated_grpc: Whether this op will be gated. If any of the debug_urls of this
109 debug op has been enabled at the debug_url. If all of the debug_urls of this
134 gated_grpc: Whether this op will be gated. If any of the debug_urls of this
137 debug op has been enabled at the debug_url. If all of the debug_urls of this
154 // Note: this could return a more specific shape if needed in future.
169 [4]: negative element count (excluding -inf), if lower_bound is the default
172 [6]: positive element count (excluding +inf), if upper_bound is the default
176 Output elements [1:8] are all zero, if the tensor is uninitialized
    [all...]
  /prebuilts/go/darwin-x86/src/go/parser/
interface.go 21 // If src != nil, readSource converts src to a []byte if possible;
22 // otherwise it returns an error. If src == nil, readSource returns
26 if src != nil {
34 if s != nil {
39 if _, err := io.Copy(&buf, s); err != nil {
69 // If src != nil, ParseFile parses the source from src and the filename is
72 // If src == nil, ParseFile parses the file specified by filename.
78 // If the source couldn't be read, the returned AST is nil and the error
79 // indicates the specific failure. If the source was read but synta
    [all...]
  /prebuilts/go/darwin-x86/src/os/
file_posix.go 17 // If there is an error, it will be of type *PathError.
22 if e != nil {
25 if n < len {
34 if i&ModeSetuid != 0 {
37 if i&ModeSetgid != 0 {
40 if i&ModeSticky != 0 {
49 if e := syscall.Chmod(fixLongPath(name), syscallMode(mode)); e != nil {
57 if err := f.checkValid("chmod"); err != nil {
60 if e := f.pfd.Fchmod(syscallMode(mode)); e != nil {
67 // If the file is a symbolic link, it changes the uid and gid of the link's target
    [all...]
  /prebuilts/go/linux-x86/src/go/parser/
interface.go 21 // If src != nil, readSource converts src to a []byte if possible;
22 // otherwise it returns an error. If src == nil, readSource returns
26 if src != nil {
34 if s != nil {
39 if _, err := io.Copy(&buf, s); err != nil {
69 // If src != nil, ParseFile parses the source from src and the filename is
72 // If src == nil, ParseFile parses the file specified by filename.
78 // If the source couldn't be read, the returned AST is nil and the error
79 // indicates the specific failure. If the source was read but synta
    [all...]
  /prebuilts/go/linux-x86/src/os/
file_posix.go 17 // If there is an error, it will be of type *PathError.
22 if e != nil {
25 if n < len {
34 if i&ModeSetuid != 0 {
37 if i&ModeSetgid != 0 {
40 if i&ModeSticky != 0 {
49 if e := syscall.Chmod(fixLongPath(name), syscallMode(mode)); e != nil {
57 if err := f.checkValid("chmod"); err != nil {
60 if e := f.pfd.Fchmod(syscallMode(mode)); e != nil {
67 // If the file is a symbolic link, it changes the uid and gid of the link's target
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
ld.s 7 # If defined, test sd instead.
13 # If defined, test l.d instead.
20 # If defined, test s.d instead.
27 # If defined, test ldc1 instead.
34 # If defined, test sdc1 instead.
  /prebuilts/go/darwin-x86/src/net/
addrselect.go 14 if len(addrs) < 2 {
21 if len(addrs) != len(srcs) {
38 // srcsAddrs tries to UDP-connect to each address to see if it has a
48 if err == nil {
49 if src, ok := c.LocalAddr().(*UDPAddr); ok {
65 if ip == nil {
79 srcs []IP // or nil if unreachable
110 // If DB is known to be unreachable or if Source(DB) is undefined, then
111 // prefer DA. Similarly, if DA is known to be unreachable or i
    [all...]
  /prebuilts/go/linux-x86/src/net/
addrselect.go 14 if len(addrs) < 2 {
21 if len(addrs) != len(srcs) {
38 // srcsAddrs tries to UDP-connect to each address to see if it has a
48 if err == nil {
49 if src, ok := c.LocalAddr().(*UDPAddr); ok {
65 if ip == nil {
79 srcs []IP // or nil if unreachable
110 // If DB is known to be unreachable or if Source(DB) is undefined, then
111 // prefer DA. Similarly, if DA is known to be unreachable or i
    [all...]
  /system/bt/doc/
power_management.md 37 currently known connections to a given device. Thus, if RFCOMM specifies that
61 - `BTA_DM_PM_NO_PREF` overrides `BTA_DM_PM_NO_ACTION` and if selected as the
98 - The power mode config is looked up in the `bta_dm_pm_cfg` table. If none
101 - If any timers were set for the given `BD_ADDR`, they are stopped.
103 - The power spec state table (`bta_dm_pm_spec`) is checked to see if
104 there's no action to be performed (`BTA_DM_PM_NO_ACTION`), and if so,
107 connection if it's supposed to be managed according to the power spec
108 state tables. If the spec specifies `BTA_DM_PM_NO_PREF`, then any
111 3. `bta_dm_pm_cback` checks to see if the `bta_dm_ssr_spec` specifies SSR
112 adjustments are to be made, and if so, `bta_dm_pm_ssr` is called with th
    [all...]
  /compatibility/cdd/2_device-types/
2_2_handheld-reqs.md 7 Android device implementations are classified as a Handheld if they meet all the
46 If Handheld device implementations include a 3-axis accelerometer, they:
51 If Handheld device implementations include a gyroscope, they:
68 If Handheld device implementations include a metered connection, they:
82 If Handheld device implementations are 32-bit:
85 and userspace MUST be at least 512MB if any of the following densities are used:
91 and userspace MUST be at least 608MB if any of the following densities are used:
97 and userspace MUST be at least 896MB if any of the following densities are used:
103 and userspace MUST be at least 1344MB if any of the following densities are used:
108 If Handheld device implementations are 64-bit
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1610/Hi1610AcpiTables/Dsdt/
D03Pci.asl 82 If(LEqual(Arg0,ToUUID("6d30f553-836c-408e-b6ad-45bccc957949"))) {
95 // If not one of the function identifiers we recognize, then return a buffer
161 If(LEqual(Arg0,ToUUID("6d30f553-836c-408e-b6ad-45bccc957949"))) {
175 // If not one of the function identifiers we recognize, then return a buffer
241 If(LEqual(Arg0,ToUUID("6d30f553-836c-408e-b6ad-45bccc957949")))
255 // If not one of the function identifiers we recognize, then return a buffer
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/
LPC_DEV.ASL 104 // Only report resources to the OS if internal UART is
107 If(LEqual(USEL,0))
109 If(LEqual(PU1E,1))
149 If (LLessEqual(SRID, 0x04))
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
redblack32.go 29 if t.root == nil {
37 if t.left != nil {
41 if t.right != nil {
53 // If x is a node with a parent, then x.rank <= x.parent.rank <= x.rank+1.
54 // If x is a node with a grandparent, then x.rank < x.parent.parent.rank.
55 // If x is an "external [null] node", then x.rank = 0 && x.parent.rank = 1.
77 if t.root == nil {
84 if n == nil {
91 if n == nil {
102 if n == nil
    [all...]
shortcircuit.go 12 // Step 1: Replace a phi arg with a constant if that arg
13 // is the control value of a preceding If block.
15 // If a goto b2 else b3
23 if v.Op != OpPhi {
26 if !v.Type.IsBoolean() {
32 if p.Kind != BlockIf {
35 if p.Control != a {
38 if e.i == 0 {
39 if ct == nil {
44 if cf == nil
    [all...]
  /compatibility/cdd/3_software/
3_13_quick-settings.md 6 If device implementations include a Quick Settings UI component, they:
3_16_companion_device_pairing.md 8 If device implementations support the companion device pairing feature, they:
  /compatibility/cdd/7_hardware-compatibility/
7_4_data-connectivity.md 18 If device implementations include GSM or CDMA telephony, they:
24 If device implementations do not include telephony hardware, they:
30 If device implementations report the `android.hardware.telephony feature`, they:
59 If device implementations report `android.hardware.telephony`, they:
79 If device implementations include support for 802.11 and expose the
112 If device implementations include support for Wi-Fi Direct, they:
130 If device implementations include support for TDLS and TDLS is enabled by the
146 If device implementations include support for Wi-Fi Aware and expose the
164 If device implementations include support for Wi-Fi Passpoint, they:
173 Conversely if device implementations do not include support for Wi-F
    [all...]
  /compatibility/cdd/9_security-model/
9_6_premium-sms-warning.md 8 If device implementations declare support for `android.hardware.telephony`,
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Pv660AcpiTables/Dsdt/
Hns.asl 191 If (LEqual (Arg1, 0)) {
204 If (LEqual (Arg1, 0)) {
215 If (LLessEqual (Arg0, 5)) {
220 If (LEqual (Arg1, 0)) {
235 If (LEqual (Arg1, 0)) {
300 If (LEqual (Local0, 0))
374 If (LEqual(Arg0,ToUUID("1A85AA1A-E293-415E-8E28-8D690A0F820A")))
376 If (LEqual (Arg1, 0x00))
413 If (LLessEqual (Local0, 3))
577 If (LEqual (Arg1, 0)) {
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/
CopyMem.asm 5 ; This file started out as C code that did 64 bit moves if the buffer was
35 // If (dest < source)
38 // If (source + length < dest)
45 // Check if we can use an optimized path ((length >= 32) && destination word-aligned && source word-aligned) for the memcopy (optimized path if r0 == 1)
98 // If length is less than 32 then disable optim
131 // If length is less than 32 then disable optim
  /external/ImageMagick/api_examples/
magick_script 14 If you want you can put uncommented documentation such as Perl POD

Completed in 585 milliseconds

1 2 3 4 5 6 7 8 91011>>