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

1 2 3 4 5 6 7 8 91011>>

  /development/ndk/platforms/android-3/include/linux/
spinlock_api_up.h 29 #define __LOCK_IRQSAVE(lock, flags) do { local_irq_save(flags); __LOCK(lock); } while (0)
37 #define __UNLOCK_IRQRESTORE(lock, flags) do { local_irq_restore(flags); __UNLOCK(lock); } while (0)
49 #define _spin_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags)
50 #define _read_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags)
51 #define _write_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags)
    [all...]
  /external/android-clat/
netlink_msg.h 22 struct nl_msg *nlmsg_alloc_ifaddr(uint16_t type, uint16_t flags, struct ifaddrmsg *ifa);
23 struct nl_msg *nlmsg_alloc_ifinfo(uint16_t type, uint16_t flags, struct ifinfomsg *ifi);
24 struct nl_msg *nlmsg_alloc_rtmsg(uint16_t type, uint16_t flags, struct rtmsg *rt);
26 void send_ifaddrmsg(uint16_t type, uint16_t flags, struct ifaddrmsg *ifa, struct nl_cb *callbacks);
  /external/iptables/include/linux/netfilter/
xt_rpfilter.h 14 __u8 flags; member in struct:xt_rpfilter_info
  /external/libcxx/test/std/input.output/iostream.format/std.manip/
setbase.pass.cpp 30 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct);
32 assert((is.flags() & std::ios_base::basefield) == std::ios_base::dec);
34 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex);
36 assert((is.flags() & std::ios_base::basefield) == 0);
42 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct);
44 assert((os.flags() & std::ios_base::basefield) == std::ios_base::dec);
46 assert((os.flags() & std::ios_base::basefield) == std::ios_base::hex);
48 assert((os.flags() & std::ios_base::basefield) == 0);
54 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct);
56 assert((is.flags() & std::ios_base::basefield) == std::ios_base::dec)
    [all...]
  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
dict.h 89 * @param flags Allows case as well as suffix-insensitive comparisons.
93 av_dict_get(AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags);
108 * @param key entry key to add to *pm (will be av_strduped depending on flags)
109 * @param value entry value to add to *pm (will be av_strduped depending on flags).
113 int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags);
122 * @param flags flags to use when adding to dictionary.
130 int flags);
137 * @param flags flags to use when setting entries in *ds
    [all...]
  /external/regex-re2/re2/testing/
mimics_pcre_test.cc 63 Regexp::ParseFlags flags = Regexp::LikePerl; local
65 flags = flags | Regexp::Latin1;
66 Regexp* re = Regexp::Parse(t.regexp, flags, NULL);
  /external/skia/src/core/
SkGraphics.cpp 88 /* flags are of the form param; or param=value; */
89 void SkGraphics::SetFlags(const char* flags) {
90 if (!flags) {
95 size_t len = strlen(flags);
96 const char* paramEnd = flags + len;
97 const char* nextEqual = strchr(flags, '=');
101 nextSemi = strchr(flags, ';');
105 size_t paramLen = paramEnd - flags;
110 if (strncmp(flags, gFlags[i].fStr, paramLen) == 0) {
119 flags = nextSemi + 1
    [all...]
  /external/tcpdump/
print-otv.c 41 uint8_t flags; local
50 flags = *bp;
60 ND_PRINT((ndo, "flags [%s] (0x%02x), ", flags & 0x08 ? "I" : ".", flags));
print-vxlan.c 43 uint8_t flags; local
51 flags = *bp;
58 ND_PRINT((ndo, "flags [%s] (0x%02x), ", flags & 0x08 ? "I" : ".", flags));
  /external/toybox/toys/posix/
uname.c 43 int i, flags = toys.optflags, needspace=0; local
47 if (!flags) flags = FLAG_s;
51 if (flags & ((1<<i)|FLAG_a)) {
  /external/v8/src/crankshaft/
hydrogen-store-elimination.cc 16 GVNFlagSet flags; // Use GVN flags as an approximation for some instructions. local
17 flags.RemoveAll();
19 flags.Add(kArrayElements);
20 flags.Add(kArrayLengths);
21 flags.Add(kStringLengths);
22 flags.Add(kBackingStoreFields);
23 flags.Add(kDoubleArrayElements);
24 flags.Add(kDoubleFields);
25 flags.Add(kElementsPointer)
    [all...]
  /external/valgrind/VEX/test/
test-i386.h 9 #define EXECOP2(size, res, s1, flags) \
15 : "=q" (res), "=g" (flags)\
16 : "q" (s1), "0" (res), "1" (flags));
18 #define EXECOP1(size, res, flags) \
24 : "=q" (res), "=g" (flags)\
25 : "0" (res), "1" (flags));
30 int res, flags; local
32 flags = iflags;
33 EXECOP1("", res, flags);
36 stringify(OP) "l", s0, res, iflags, flags & CC_MASK)
44 int res, flags; local
58 int res, flags; local
73 int res, flags; local
87 int res, flags; local
101 int res, flags; local
    [all...]
  /external/valgrind/coregrind/m_sigframe/
priv_sigframe.h 41 SizeT size, UInt flags );
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
default_temporal_layers.cc 169 int flags = 0; local
174 flags |= VP8_EFLAG_NO_UPD_GF;
175 flags |= VP8_EFLAG_NO_UPD_ARF;
176 flags |= VP8_EFLAG_NO_REF_GF;
177 flags |= VP8_EFLAG_NO_REF_ARF;
180 flags |= VP8_EFLAG_NO_REF_GF;
184 flags |= VP8_EFLAG_NO_REF_ARF;
185 flags |= VP8_EFLAG_NO_UPD_ARF;
186 flags |= VP8_EFLAG_NO_UPD_LAST;
189 flags |= VP8_EFLAG_NO_REF_ARF
    [all...]
  /frameworks/base/native/android/
native_activity.cpp 37 void ANativeActivity_showSoftInput(ANativeActivity* activity, uint32_t flags) {
38 android_NativeActivity_showSoftInput(activity, flags);
41 void ANativeActivity_hideSoftInput(ANativeActivity* activity, uint32_t flags) {
42 android_NativeActivity_hideSoftInput(activity, flags);
  /libcore/ojluni/src/main/java/java/util/
Formattable.java 37 * stock's name depending on the flags and length constraints:
131 * @param flags
132 * The flags modify the output format. The value is interpreted as
133 * a bitmask. Any combination of the following flags may be set:
136 * FormattableFlags#ALTERNATE}. If no flags are set, the default
163 void formatTo(Formatter formatter, int flags, int width, int precision);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/std.manip/
setbase.pass.cpp 30 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct);
32 assert((is.flags() & std::ios_base::basefield) == std::ios_base::dec);
34 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex);
36 assert((is.flags() & std::ios_base::basefield) == 0);
42 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct);
44 assert((os.flags() & std::ios_base::basefield) == std::ios_base::dec);
46 assert((os.flags() & std::ios_base::basefield) == std::ios_base::hex);
48 assert((os.flags() & std::ios_base::basefield) == 0);
54 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct);
56 assert((is.flags() & std::ios_base::basefield) == std::ios_base::dec)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/bigram/
bigram_list_policy.h 37 BigramListReadWriteUtils::BigramFlags flags; local
38 if (!BigramListReadWriteUtils::getBigramEntryPropertiesAndAdvancePosition(mBuffer, &flags,
45 *outProbability = BigramListReadWriteUtils::getProbabilityFromFlags(flags);
46 *outHasNext = BigramListReadWriteUtils::hasNext(flags);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter/
xt_cluster.h 12 u_int32_t flags; member in struct:xt_cluster_match_info
  /prebuilts/gdb/darwin-x86/include/python2.7/
ast.h 7 PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
  /prebuilts/gdb/linux-x86/include/python2.7/
ast.h 7 PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL.h 106 * These are the flags which may be passed to SDL_Init(). You should
125 * This function initializes the subsystems specified by \c flags
129 extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
134 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
139 extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
145 * If \c flags is 0, it returns a mask of all initialized subsystems.
147 extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL.h 106 * These are the flags which may be passed to SDL_Init(). You should
125 * This function initializes the subsystems specified by \c flags
129 extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
134 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
139 extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
145 * If \c flags is 0, it returns a mask of all initialized subsystems.
147 extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
  /prebuilts/misc/windows/sdl2/include/
SDL.h 106 * These are the flags which may be passed to SDL_Init(). You should
125 * This function initializes the subsystems specified by \c flags
129 extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
134 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
139 extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
145 * If \c flags is 0, it returns a mask of all initialized subsystems.
147 extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL.h 106 * These are the flags which may be passed to SDL_Init(). You should
125 * This function initializes the subsystems specified by \c flags
129 extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
134 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
139 extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
145 * If \c flags is 0, it returns a mask of all initialized subsystems.
147 extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);

Completed in 511 milliseconds

1 2 3 4 5 6 7 8 91011>>