Searched defs:of (Results 1 - 25 of 164) sorted by last modified time

1234567

/external/valgrind/main/none/tests/x86/
H A Daad_aam.c22 int of __attribute__((unused)); local
44 of=!!(flags&0x800);
48 // flags,cf,pf,af,zf,sf,of);
91 of=!!(flags&0x800);
95 // flags,cf,pf,af,zf,sf,of);
/external/valgrind/main/VEX/priv/
H A Dguest_amd64_helpers.c7 This file is part of Valgrind, a dynamic binary instrumentation
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
19 WITHOUT ANY WARRANTY; without even the implied warranty of
23 You should have received a copy of the GNU General Public License
30 Neither the names of the U.S. Department of Energy nor the
31 University of California nor the names of its contributors may be
51 These calls are of cours
822 ULong of,sf,zf,cf,pf; local
2742 ULong cf=0, of=0, tempcf; local
2810 ULong cf=0, of=0, tempcf; local
[all...]
H A Dguest_x86_helpers.c7 This file is part of Valgrind, a dynamic binary instrumentation
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
19 WITHOUT ANY WARRANTY; without even the implied warranty of
23 You should have received a copy of the GNU General Public License
30 Neither the names of the U.S. Department of Energy nor the
31 University of California nor the names of its contributors may be
51 These calls are of cours
647 UInt of,sf,zf,cf,pf; local
1895 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; local
1950 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; local
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfactor-weight.h5 // You may obtain a copy of the License at
37 FactorWeightOptions(const CacheOptions &opts, float d, bool of) argument
38 : CacheOptions(opts), delta(d), final_only(of) {}
40 explicit FactorWeightOptions(float d, bool of = false)
41 : delta(d), final_only(of) {}
43 FactorWeightOptions(bool of = false)
44 : delta(kDelta), final_only(of) {}
49 // sequence of pairs of weights (xi,yi) such that the sum of th
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableAnnotation.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
66 public static ImmutableAnnotation of(Annotation annotation) { method in class:ImmutableAnnotation
95 return ImmutableAnnotation.of(item);
H A DImmutableAnnotationElement.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
52 this.value = ImmutableEncodedValueFactory.of(value);
61 public static ImmutableAnnotationElement of(AnnotationElement annotationElement) { method in class:ImmutableAnnotationElement
89 return ImmutableAnnotationElement.of(item);
H A DImmutableClassDef.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
72 fields = ImmutableList.of();
75 methods = ImmutableList.of();
81 this.interfaces = interfaces==null ? ImmutableSet.<String>of() : ImmutableSet.copyOf(interfaces);
103 this.interfaces = interfaces==null ? ImmutableSet.<String>of() : ImmutableSet.copyOf(interfaces);
134 public static ImmutableClassDef of(ClassDe method in class:ImmutableClassDef
[all...]
H A DImmutableDexFile.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
54 public static ImmutableDexFile of(DexFile dexFile) { method in class:ImmutableDexFile
H A DImmutableExceptionHandler.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
52 public static ImmutableExceptionHandler of(ExceptionHandler exceptionHandler) { method in class:ImmutableExceptionHandler
80 return ImmutableExceptionHandler.of(item);
H A DImmutableField.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
86 public static ImmutableField of(Field field) { method in class:ImmutableField
121 return ImmutableField.of(item);
H A DImmutableMethod.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
72 this.methodImplementation = ImmutableMethodImplementation.of(methodImplementation);
91 public static ImmutableMethod of(Method method) { method in class:ImmutableMethod
129 return ImmutableMethod.of(item);
H A DImmutableMethodImplementation.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
75 public static ImmutableMethodImplementation of(@Nullable MethodImplementation methodImplementation) { method in class:ImmutableMethodImplementation
H A DImmutableMethodParameter.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
67 public static ImmutableMethodParameter of(MethodParameter methodParameter) { method in class:ImmutableMethodParameter
100 return ImmutableMethodParameter.of(item);
H A DImmutableTryBlock.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
66 public static ImmutableTryBlock of(TryBlock<? extends ExceptionHandler> tryBlock) { method in class:ImmutableTryBlock
99 return ImmutableTryBlock.of(item);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
H A DImmutableDebugItem.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
51 public static ImmutableDebugItem of(DebugItem debugItem) { method in class:ImmutableDebugItem
57 return ImmutableStartLocal.of((StartLocal)debugItem);
59 return ImmutableEndLocal.of((EndLocal)debugItem);
61 return ImmutableRestartLocal.of((RestartLocal)debugItem);
63 return ImmutablePrologueEnd.of((PrologueEn
[all...]
H A DImmutableEndLocal.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
68 public static ImmutableEndLocal of(@Nonnull EndLocal endLocal) { method in class:ImmutableEndLocal
H A DImmutableEpilogueBegin.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
45 public static ImmutableEpilogueBegin of(@Nonnull EpilogueBegin epilogueBegin) { method in class:ImmutableEpilogueBegin
H A DImmutableLineNumber.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
49 public static ImmutableLineNumber of(@Nonnull LineNumber lineNumber) { method in class:ImmutableLineNumber
H A DImmutablePrologueEnd.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
45 public static ImmutablePrologueEnd of(@Nonnull PrologueEnd prologueEnd) { method in class:ImmutablePrologueEnd
H A DImmutableRestartLocal.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
68 public static ImmutableRestartLocal of(@Nonnull RestartLocal restartLocal) { method in class:ImmutableRestartLocal
H A DImmutableSetSourceFile.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
52 public static ImmutableSetSourceFile of (@Nonnull SetSourceFile setSourceFile) { method in class:ImmutableSetSourceFile
H A DImmutableStartLocal.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
63 public static ImmutableStartLocal of(@Nonnull StartLocal startLocal) { method in class:ImmutableStartLocal
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableArrayPayload.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
54 this.arrayElements = arrayElements==null ? ImmutableList.<Number>of() : ImmutableList.copyOf(arrayElements);
67 public static ImmutableArrayPayload of(ArrayPayload instruction) { method in class:ImmutableArrayPayload
H A DImmutableInstruction.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
53 public static ImmutableInstruction of(Instruction instruction) { method in class:ImmutableInstruction
60 return ImmutableInstruction10t.of((Instruction10t)instruction);
63 return ImmutableUnknownInstruction.of((UnknownInstruction)instruction);
65 return ImmutableInstruction10x.of((Instruction10x)instruction);
67 return ImmutableInstruction11n.of((Instruction11
[all...]
H A DImmutableInstruction10t.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
52 public static ImmutableInstruction10t of(Instruction10t instruction) { method in class:ImmutableInstruction10t

Completed in 483 milliseconds

1234567