/external/syslinux/com32/lib/ |
H A D | dhcppack.c | 11 * Pack DHCP options into an option field, without overload support. 71 * Pack DHCP options into an option field, without overload support. 96 uint8_t overload; local 109 overload = 0; 112 overload |= 1; 117 overload |= 2; 121 /* Kill any passed-in overload option */ 136 /* Follow with the overload option, if applicable */ 137 if (overload) { 140 *q++ = overload; [all...] |
H A D | dhcpunpack.c | 56 * Unpack a DHCP packet, with overload support. Do not use this 64 uint8_t overload; local 77 overload = 0; 79 overload = *(uint8_t *)opt[52].data; 85 if (overload & 1) { 100 if (overload & 2) {
|
/external/caliper/examples/src/main/java/examples/ |
H A D | CharacterBenchmark.java | 31 @Param private Overload overload; field in class:CharacterBenchmark 56 if (overload == Overload.CHAR) { 73 if (overload == Overload.CHAR) { 89 if (overload == Overload.CHAR) { 105 if (overload == Overload.CHAR) { 121 if (overload == Overload.CHAR) { 137 if (overload == Overload.CHAR) { 153 if (overload == Overload.CHAR) { 169 if (overload == Overload.CHAR) { 185 if (overload [all...] |
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
H A D | p5-generic-lambda-1y.cpp | 14 template <class F1, class F2> struct overload : F1, F2 { 17 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { } 26 overload<decltype(Base), decltype(NumParams)> O(Base, NumParams); 32 template <class F1, class F2> struct overload : F1, F2 { 35 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { } 44 overload<decltype(Base), decltype(NumParams)> O(Base, NumParams);
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
H A D | MismatchedTokenException.pm | 7 use overload
|
H A D | MissingTokenException.pm | 5 use overload
|
H A D | UnwantedTokenException.pm | 5 use overload
|
H A D | CommonToken.pm | 7 use overload
|
H A D | CommonTokenStream.pm | 13 use overload
|
H A D | BitSet.pm | 10 use overload
|
/external/dnsmasq/contrib/wrt/ |
H A D | dhcp_lease_time.c | 98 unsigned char *ret, *overload; local 104 /* look for overload option. */ 105 if (!(overload = option_find1(&mess->options[0], ((unsigned char *)mess) + size, OPTION_OVERLOAD, 1))) 109 if ((overload[2] & 1) && 114 if ((overload[2] & 2) &&
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
H A D | Antlr.Runtime.pas | 112 procedure Rewind(const Marker: Integer); overload; 125 procedure Rewind; overload; 347 function ToString(const Start, Stop: Integer): String; overload; 355 function ToString(const Start, Stop: IToken): String; overload; 469 function ToString: String; overload; 470 function ToString(const TokenNames: TStringArray): String; overload; 817 procedure ConsumeUntil(const Input: IIntStream; const TokenType: Integer); overload; 820 procedure ConsumeUntil(const Input: IIntStream; const BitSet: IBitSet); overload; 833 //function GetRuleInvocationStack: IList<IANTLRInterface>; overload; 847 // const RecognizerClassName: String): IList<IANTLRInterface>; overload; [all...] |
H A D | Antlr.Runtime.Tree.pas | 73 function CreateNode(const Payload: IToken): IANTLRInterface; overload; 162 function BecomeRoot(const NewRoot, OldRoot: IANTLRInterface): IANTLRInterface; overload; 209 function BecomeRoot(const NewRoot: IToken; const OldRoot: IANTLRInterface): IANTLRInterface; overload; 217 function CreateNode(const TokenType: Integer; const FromToken: IToken): IANTLRInterface; overload; 226 const Text: String): IANTLRInterface; overload; 234 function CreateNode(const TokenType: Integer; const Text: String): IANTLRInterface; overload; 369 function ToString(const Start, Stop: IANTLRInterface): String; overload; 370 function ToString: String; overload; 561 procedure SanityCheckParentAndChildIndexes; overload; 563 const I: Integer); overload; [all...] |
H A D | Antlr.Runtime.Tools.pas | 143 procedure AddRange(const Values: array of T); overload; 144 procedure AddRange(const Collection: IEnumerable<T>); overload; 145 procedure AddRange(Collection: TEnumerable<T>); overload; 146 procedure AddRange(const List: IList<T>); overload; 150 procedure InsertRange(Index: Integer; const Values: array of T); overload; 151 procedure InsertRange(Index: Integer; const Collection: IEnumerable<T>); overload; 152 procedure InsertRange(Index: Integer; const Collection: TEnumerable<T>); overload; 153 procedure InsertRange(Index: Integer; const List: IList<T>); overload; 168 procedure Sort; overload; 169 procedure Sort(const AComparer: IComparer<T>); overload; [all...] |
H A D | Antlr.Runtime.Collections.pas | 117 constructor Create; overload; 118 constructor Create(const ACapacity: Integer); overload; 156 class function ListToString(const Coll: IList<IANTLRInterface>): String; overload; static; 157 class function ListToString(const Coll: IList<String>): String; overload; static;
|
/external/v8/src/asmjs/ |
H A D | asm-types.cc | 317 void AsmOverloadedFunctionType::AddOverload(AsmType* overload) { argument 318 DCHECK(overload->AsCallableType() != nullptr); 319 overloads_.push_back(overload);
|
H A D | asm-types.h | 163 void AddOverload(AsmType* overload);
|
/external/dnsmasq/src/ |
H A D | rfc2131.c | 1475 unsigned char *ret, *overload; local 1481 /* look for overload option. */ 1482 if (!(overload = option_find1(&mess->options[0] + sizeof(u32), ((unsigned char *)mess) + size, OPTION_OVERLOAD, 1))) 1486 if ((overload[2] & 1) && 1491 if ((overload[2] & 2) && 1552 unsigned char *overload; local 1587 overload = find_overload(mess); 1589 if (overload && (option_uint(overload, 0, 1) & 1)) 1598 if (overload 1637 unsigned char *overload; local [all...] |
/external/syslinux/core/lwip/src/core/ |
H A D | dhcp.c | 1471 u32_t overload = dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_OVERLOAD); local 1473 if (overload == DHCP_OVERLOAD_FILE) { 1476 } else if (overload == DHCP_OVERLOAD_SNAME) { 1479 } else if (overload == DHCP_OVERLOAD_SNAME_FILE) { 1484 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("invalid overload option: %d\n", (int)overload));
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/ |
H A D | Delphi.stg | 159 constructor Create; overload; 160 constructor Create(const AInput: ICharStream<grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>); overload; 161 constructor Create(const AInput: ICharStream; const AState: IRecognizerSharedState<grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>); overload; 341 constructor Create(const AInput: <inputStreamType><grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>); overload; 342 constructor Create(const AInput: <inputStreamType>; const AState: IRecognizerSharedState<grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>); overload;
|
/external/blktrace/btreplay/doc/ |
H A D | btreplay.tex | 176 overload of CPU processing capabilities on the replay system. (Refer to
|