HomeSort by relevance Sort by last modified time
    Searched refs:flags (Results 476 - 500 of 16899) sorted by null

<<11121314151617181920>>

  /external/iptables/extensions/
libxt_iprange.c 18 /* Flags from above */
19 uint8_t flags; member in struct:ipt_iprange_info
37 .flags = XTOPT_INVERT},
39 .flags = XTOPT_INVERT},
104 info->flags |= IPRANGE_SRC;
106 info->flags |= IPRANGE_SRC_INV;
113 info->flags |= IPRANGE_DST;
115 info->flags |= IPRANGE_DST_INV;
133 info->flags |= IPRANGE_SRC;
135 info->flags |= IPRANGE_SRC_INV
    [all...]
  /external/pcre/dist2/src/sljit/
sljitNativePPC_32.c 44 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags,
60 if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
65 else if ((flags & REG_DEST) && op == SLJIT_MOV_S8)
75 if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
87 return push_inst(compiler, NOR | RC(flags) | S(src2) | A(dst) | B(src2));
91 return push_inst(compiler, NEG | OERC(flags) | D(dst) | A(src2));
95 return push_inst(compiler, CNTLZW | RC(flags) | S(src2) | A(dst));
98 if (flags & ALT_FORM1) {
99 /* Flags does not set: BIN_IMM_EXTS unnecessary. */
103 if (flags & ALT_FORM2)
    [all...]
  /external/dnsmasq/src/
cache.c 90 crecp->flags = 0;
163 if (!(crecp->flags & F_REVERSE))
165 while (*up && ((*up)->flags & F_REVERSE))
168 if (crecp->flags & F_IMMORTAL)
169 while (*up && !((*up)->flags & F_IMMORTAL))
178 crecp->flags &= ~F_FORWARD;
179 crecp->flags &= ~F_REVERSE;
191 if (crecp->flags & F_BIGNAME)
195 crecp->flags &= ~F_BIGNAME;
227 if (crecp->flags & F_BIGNAME
758 unsigned short flags = 0, saved_flags = 0; local
1039 unsigned short flags = F_DHCP | F_FORWARD | F_IPV4 | F_REVERSE; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
re.py 89 Some of the functions in this module takes flags as optional parameters:
116 # flags
134 def match(pattern, string, flags=0):
137 return _compile(pattern, flags).match(string)
139 def search(pattern, string, flags=0):
142 return _compile(pattern, flags).search(string)
144 def sub(pattern, repl, string, count=0, flags=0):
151 return _compile(pattern, flags).sub(repl, string, count)
153 def subn(pattern, repl, string, count=0, flags=0):
162 return _compile(pattern, flags).subn(repl, string, count)
    [all...]
  /external/boringssl/src/crypto/x509/
x509_trs.c 66 static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags);
67 static int trust_1oid(X509_TRUST *trust, X509 *x, int flags);
68 static int trust_compat(X509_TRUST *trust, X509 *x, int flags);
70 static int obj_trust(int id, X509 *x, int flags);
71 static int (*default_trust) (int id, X509 *x, int flags) = obj_trust;
114 int X509_check_trust(X509 *x, int id, int flags)
130 return default_trust(id, x, flags);
132 return pt->check_trust(pt, x, flags);
177 int X509_TRUST_add(int id, int flags, int (*ck) (X509_TRUST *, X509 *, int),
187 flags &= ~X509_TRUST_DYNAMIC
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
flag_changer.py 24 def CustomCommandLineFlags(device, cmdline_name, flags):
29 with flag_changer.TemporaryCommandLineFlags(device, name, flags):
30 # Launching Chrome will use the provided flags.
32 # Previous set of flags on the device is now restored.
36 cmdline_name: Name of the command line file where to store flags.
37 flags: A sequence of command line flags to set.
41 changer.ReplaceFlags(flags)
48 """Changes the flags Chrome runs with.
50 Flags can be temporarily set for a particular set of unit tests. Thes
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 20 static int try_pvc(const char *text,struct sockaddr_atmpvc *addr,int flags)
44 if (!(flags & T2A_WILDCARD)) return FATAL; /* not allowed */
49 if (!(flags & T2A_UNSPEC)) return FATAL; /* not allowed */
64 if (part[1] > (flags & T2A_NNI ? ATM_MAX_VPI_NNI : ATM_MAX_VPI))
75 static int do_try_nsap(const char *text,struct sockaddr_atmsvc *addr,int flags)
125 if (*text == '/' && (flags & T2A_WILDCARD)) break;
149 static int try_nsap(const char *text,struct sockaddr_atmsvc *addr,int flags)
153 result = do_try_nsap(text,addr,flags);
161 static int try_e164(const char *text,struct sockaddr_atmsvc *addr,int flags)
184 result = do_try_nsap(text,addr,flags);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
re.py 89 Some of the functions in this module takes flags as optional parameters:
116 # flags
134 def match(pattern, string, flags=0):
137 return _compile(pattern, flags).match(string)
139 def search(pattern, string, flags=0):
142 return _compile(pattern, flags).search(string)
144 def sub(pattern, repl, string, count=0, flags=0):
151 return _compile(pattern, flags).sub(repl, string, count)
153 def subn(pattern, repl, string, count=0, flags=0):
162 return _compile(pattern, flags).subn(repl, string, count
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
re.py 89 Some of the functions in this module takes flags as optional parameters:
116 # flags
134 def match(pattern, string, flags=0):
137 return _compile(pattern, flags).match(string)
139 def search(pattern, string, flags=0):
142 return _compile(pattern, flags).search(string)
144 def sub(pattern, repl, string, count=0, flags=0):
151 return _compile(pattern, flags).sub(repl, string, count)
153 def subn(pattern, repl, string, count=0, flags=0):
162 return _compile(pattern, flags).subn(repl, string, count
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
re.py 89 Some of the functions in this module takes flags as optional parameters:
116 # flags
134 def match(pattern, string, flags=0):
137 return _compile(pattern, flags).match(string)
139 def search(pattern, string, flags=0):
142 return _compile(pattern, flags).search(string)
144 def sub(pattern, repl, string, count=0, flags=0):
151 return _compile(pattern, flags).sub(repl, string, count)
153 def subn(pattern, repl, string, count=0, flags=0):
162 return _compile(pattern, flags).subn(repl, string, count
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py 89 Some of the functions in this module takes flags as optional parameters:
116 # flags
134 def match(pattern, string, flags=0):
137 return _compile(pattern, flags).match(string)
139 def search(pattern, string, flags=0):
142 return _compile(pattern, flags).search(string)
144 def sub(pattern, repl, string, count=0, flags=0):
151 return _compile(pattern, flags).sub(repl, string, count)
153 def subn(pattern, repl, string, count=0, flags=0):
162 return _compile(pattern, flags).subn(repl, string, count
    [all...]
  /bionic/libc/stdio/
vfprintf.cpp 49 int flags; /* flags as above */ local
173 flags = 0;
186 * ``If the space and + flags both appear, the space
193 flags |= ALT;
211 flags |= LADJUST;
246 flags |= ZEROPAD;
276 flags |= LONGDBL;
281 flags |= CHARINT;
283 flags |= SHORTINT
    [all...]
vfwprintf.cpp 49 int flags; /* flags as above */ local
162 flags = 0;
175 * ``If the space and + flags both appear, the space
182 flags |= ALT;
200 flags |= LADJUST;
235 flags |= ZEROPAD;
265 flags |= LONGDBL;
270 flags |= CHARINT;
272 flags |= SHORTINT
    [all...]
  /external/jemalloc/test/integration/
xallocx.c 244 int flags = MALLOCX_ARENA(arena_ind()); local
256 p = mallocx(large2, flags);
259 assert_zu_eq(xallocx(p, large2, 0, flags), large2,
262 assert_zu_eq(xallocx(p, large0, 0, flags), large0,
264 assert_zu_eq(xallocx(p, smallmax, 0, flags), large0,
267 assert_zu_eq(xallocx(p, large2, 0, flags), large2,
270 assert_zu_eq(xallocx(p, large0, large2 - large0, flags), large2,
272 assert_zu_eq(xallocx(p, large1, large2 - large1, flags), large2,
274 assert_zu_eq(xallocx(p, large0, large1 - large0, flags), large1,
276 assert_zu_eq(xallocx(p, smallmax, large0 - smallmax, flags), large0
311 int flags = MALLOCX_ARENA(arena_ind()); local
416 int flags = MALLOCX_ARENA(arena_ind()) | MALLOCX_ZERO; local
    [all...]
  /external/tensorflow/tensorflow/core/lib/jpeg/
jpeg_mem.cc 52 FewerArgsForCompiler(int datasize, const UncompressFlags& flags, int64* nwarn,
55 flags_(flags),
74 bool IsCropWindowValid(const UncompressFlags& flags, int input_image_width,
78 return flags.crop_width > 0 && flags.crop_height > 0 && flags.crop_x >= 0 &&
79 flags.crop_y >= 0 &&
80 flags.crop_y + flags.crop_height <= input_image_height &&
81 flags.crop_x + flags.crop_width <= input_image_width
87 const auto& flags = argball->flags_; local
757 CompressInternal(static_cast<const uint8*>(srcdata), width, height, flags, local
    [all...]
  /tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
PsiModifierItem.kt 33 var flags: Int = 0,
39 flags = if (set) {
40 flags or mask
42 flags and mask.inv()
47 return flags and mask != 0
206 return flags and DEPRECATED.inv() == 0 // deprecated isn't a real modifier
210 return flags and (PUBLIC or PROTECTED or PRIVATE or INTERNAL) == 0
214 return flags and (PUBLIC or PROTECTED or PRIVATE or INTERNAL)
220 val flags2 = other.flags
224 // TODO: Compatibility: skipNativeModifier and skipStrictFpModifier modifier flags!
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_cluster.h 29 __u32 flags; member in struct:xt_cluster_match_info
xt_quota.h 28 __u32 flags; member in struct:xt_quota_info
  /bionic/libc/kernel/uapi/linux/
pr.h 33 __u32 flags; member in struct:pr_reservation
38 __u32 flags; member in struct:pr_registration
45 __u32 flags; member in struct:pr_preempt
49 __u32 flags; member in struct:pr_clear
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/synopsys/
dw_mmc.h 16 unsigned int flags; member in struct:dw_mmc_params
  /device/linaro/bootloader/arm-trusted-firmware/plat/xilinx/zynqmp/pm_service/
pm_svc_main.h 15 uint64_t flags);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_hpux.c 27 int flags; local
30 flags = BIND_FIRST | BIND_DEFERRED;
32 flags = BIND_FIRST | BIND_IMMEDIATE |
36 lib = shl_load(pathname, flags, 0);
  /external/clang/lib/Sema/
Scope.cpp 21 void Scope::setFlags(Scope *parent, unsigned flags) {
23 Flags = flags;
25 if (parent && !(flags & FnScope)) {
43 if ((Flags & (FnScope | ClassScope | BlockScope | TemplateParamScope |
46 Flags |= parent->getFlags() & OpenMPSimdDirectiveScope;
58 if (flags & FnScope) FnParent = this;
61 if (Flags & (ClassScope | FnScope)) {
66 if (flags & BreakScope) BreakParent = this;
67 if (flags & ContinueScope) ContinueParent = this
    [all...]
  /external/compiler-rt/lib/asan/
asan_flags.h 12 // ASan runtime flags.
32 struct Flags {
40 extern Flags asan_flags_dont_use_directly;
41 inline Flags *flags() { function in namespace:__asan
  /external/compiler-rt/lib/dfsan/
dfsan_interceptors.cc 19 INTERCEPTOR(void *, mmap, void *addr, SIZE_T length, int prot, int flags,
21 void *res = REAL(mmap)(addr, length, prot, flags, fd, offset);
27 INTERCEPTOR(void *, mmap64, void *addr, SIZE_T length, int prot, int flags,
29 void *res = REAL(mmap64)(addr, length, prot, flags, fd, offset);

Completed in 763 milliseconds

<<11121314151617181920>>