HomeSort by relevance Sort by last modified time
    Searched refs:Flag (Results 1 - 25 of 666) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/services/NetworkRecommendation/src/com/android/networkrecommendation/config/
G.java 26 Flag<Boolean> enableSensitiveLogging = new Flag(false);
27 Flag<String> wideAreaNetworks = new Flag("xfinitywifi,XFINITY");
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
l_add_c.h 39 A pointer to overflow flag and carry flag is passed into the
104 Word32 L_add_c(Word32 L_var1, Word32 L_var2, Flag *pOverflow, Flag *pCarry);
basicop_malloc.h 86 extern Flag Overflow;
87 extern Flag Carry;
round.h 38 A pointer to overflow flag is passed into the function. Updated
106 Word16 pv_round(Word32 L_var1, Flag *pOverflow);
add.h 40 Description: Changed function prototype; pointer to overflow flag is passed
106 Word16 add(Word16 var1, Word16 var2, Flag *pOverflow);
div_32.h 38 A pointer to overflow flag is passed into the function. Updated
107 Flag *pOverflow) ;
int_lpc.h 131 Flag *pOverflow
153 Flag *pOverflow
181 Flag *pOverflow
200 Flag *pOverflow
inv_sqrt.h 39 A pointer to overflow flag is passed into the function. Updated
107 Flag *pOverflow /* (i) : pointer to overflow flag */
l_comp.h 104 Word32 L_Comp(Word16 hi, Word16 lo, Flag *pOverflow);
l_extract.h 37 A pointer to overflow flag is passed into the function. Updated
106 Flag *pOverflow);
l_shl.h 39 A pointer to overflow flag is passed into the function. Updated
104 Word32 L_shl(Word32 L_var1, Word16 var2, Flag *pOverflow);
l_shr.h 38 A pointer to overflow flag is passed into the function. Updated
103 Word32 L_shr(Word32 L_var1, Word16 var2, Flag *pOverflow);
l_shr_r.h 39 A pointer to overflow flag is passed into the function. Updated
104 Word32 L_shr_r(Word32 L_var1, Word16 var2, Flag *pOverflow);
log2.h 41 A pointer to overflow flag is passed into the function. Updated
110 Flag *pOverflow /* (i/o) : overflow flag */
lsfwt.h 105 Flag * pOverflow); /* o : Flag set when overflow occurs */
lsp_az.h 101 Flag *pOverflow /* (o) : overflow flag */
mult_r.h 39 data, a pointer to overflow flag is now passed into the function.
106 Word16 mult_r(Word16 var1, Word16 var2, Flag *pOverflow);
pow2.h 37 A pointer to overflow flag is passed into the function. Updated
105 Flag *pOverflow /* (i/o) : overflow flag */
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
typedef.h 38 typedef int Flag;
44 typedef int Flag;
50 typedef int Flag;
56 * use (improved) type definition file typdefs.h and add a "Flag" type
59 typedef int Flag;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
typedef.h 39 typedef int Flag;
45 typedef int Flag;
51 typedef int Flag;
57 * use (improved) type definition file typdefs.h and add a "Flag" type
60 typedef int Flag;
  /frameworks/av/media/libstagefright/include/foundation/
Flagged.h 25 * Flagged<T, Flag> is basically a specialized std::pair<Flag, T> that automatically optimizes out
26 * the flag if the wrapped type T is already flagged and we can combine the outer and inner flags.
32 * Users must specify the used bits (MASK) in the flags. Flag getters and setters will enforce this
33 * mask. _Flagged_helper::minMask<Flag> is provided to easily calculate a mask for a max value.
35 * E.g. adding a safe flag can be achieved like this:
79 * One can also choose to share some flag-bits with the wrapped class:
109 * This method may be called with a signed flag.
111 * \param num number of bits to set. This must be between 0 and the number of bits in Flag.
115 template<typename Flag>
    [all...]
  /frameworks/compile/slang/
RSCCOptions.td 52 def emit_asm : Flag<["-"], "emit-asm">,
54 def _emit_asm : Flag<["-"], "S">, Alias<emit_asm>;
55 def emit_llvm : Flag<["-"], "emit-llvm">,
57 def emit_bc : Flag<["-"], "emit-bc">,
59 def emit_nothing : Flag<["-"], "emit-nothing">,
63 def m32 : Flag<["-"], "m32">, HelpText<"Emit 32-bit code (only for C++, unless eng build)">;
64 def m64 : Flag<["-"], "m64">, HelpText<"Emit 64-bit code (only for C++, unless eng build)">;
66 def emit_g : Flag<["-"], "g">,
72 def allow_rs_prefix : Flag<["-"], "allow-rs-prefix">,
95 def w : Flag<["-"], "w">, HelpText<"Suppress all warnings">
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_UnpackBlock2x2.c 56 int Flag, Value;
65 Flag = *pSrc++;
66 if (Flag & 0x10)
85 i = Flag & 15;
88 while ((Flag & 0x20)==0);
armVCM4P10_UnpackBlock4x4.c 56 int Flag, Value;
65 Flag = *pSrc++;
66 if (Flag & 0x10)
85 i = Flag & 15;
88 while ((Flag & 0x20)==0);
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
FlagTests.java 19 import com.android.emailcommon.mail.Flag;
26 * Tests of Flag enum
36 for (Flag flag : Flag.values()) {
37 String name = flag.name();

Completed in 495 milliseconds

1 2 3 4 5 6 7 8 91011>>