/external/boringssl/src/crypto/digest/ |
internal.h | 84 /* final completes the hash and writes |md_size| bytes of digest to |out|. */ 85 void (*final)(EVP_MD_CTX *ctx, uint8_t *out); member in struct:env_md_st
|
/external/llvm/lib/ProfileData/ |
InstrProfIndexed.h | 34 Hash.final(Result);
|
/external/openfst/src/include/fst/script/ |
print-impl.h | 126 Weight final = fst_.Final(s); local 127 if (final != Weight::Zero() || !output) { 129 if (show_weight_one_ || final != Weight::One()) { 130 *ostrm_ << FLAGS_fst_field_separator[0] << final; local
|
/external/proguard/examples/ |
library.pro | 66 static final long serialVersionUID; 67 static final java.io.ObjectStreamField[] serialPersistentFields;
|
servlets.pro | 57 static final long serialVersionUID; 58 static final java.io.ObjectStreamField[] serialPersistentFields;
|
/ndk/sources/host-tools/make-3.81/tests/scripts/targets/ |
SECONDARY | 93 final: intermediate 96 final intermediate source: 103 touch('final'); 106 $answer = "$make_name: `final' is up to date.\n"; 109 unlink('source', 'final', 'intermediate');
|
/packages/inputmethods/LatinIME/native/jni/src/utils/ |
ngram_utils.h | 47 class NgramUtils final { class in namespace:latinime
|
/prebuilts/tools/common/proguard/proguard4.7/examples/ |
library.pro | 66 static final long serialVersionUID; 67 static final java.io.ObjectStreamField[] serialPersistentFields;
|
servlets.pro | 57 static final long serialVersionUID; 58 static final java.io.ObjectStreamField[] serialPersistentFields;
|
/external/clang/test/OpenMP/ |
task_ast_print.cpp | 38 #pragma omp task default(none), private(argc, b) firstprivate(argv) shared(d) if (argc > 0) final(S<T>::TS > 0) 51 // CHECK-NEXT: #pragma omp task default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) final(S<int>::TS > 0) 61 // CHECK-NEXT: #pragma omp task default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) final(S<long>::TS > 0) 71 // CHECK-NEXT: #pragma omp task default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) final(S<T>::TS > 0) 89 #pragma omp task default(none), private(argc, b) firstprivate(argv) if (argc > 0) final(a > 0) 90 // CHECK-NEXT: #pragma omp task default(none) private(argc,b) firstprivate(argv) if(argc > 0) final(a > 0)
|
/external/lzma/CPP/7zip/UI/Common/ |
Bench.h | 22 virtual HRESULT SetEncodeResult(const CBenchInfo &info, bool final) = 0;
23 virtual HRESULT SetDecodeResult(const CBenchInfo &info, bool final) = 0;
|
/external/skia/src/core/ |
SkFunction.h | 52 class LambdaImpl final : public Interface { class in class:SkFunction 62 class FnPtrImpl final : public Interface { class in class:SkFunction
|
/external/valgrind/memcheck/tests/ |
sh-mem-random.stdout.exp | 6 final check
|
/external/valgrind/none/tests/s390x/ |
cksm.c | 65 uint32_t final; local 82 final = 0; // suppress gcc warning 87 final = buff[n] & 0xFF000000; 91 final = buff[n] & 0xFFFF0000; 95 final = buff[n] & 0xFFFFFF00; 101 v64 += final; 104 sum = sum + final + 1; 106 sum = sum + final;
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
entry_counters.h | 28 class EntryCounts final { class in namespace:latinime 51 class MutableEntryCounters final { class in namespace:latinime
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
ascii.py | 21 def encode(self, input, final=False): 25 def decode(self, input, final=False):
|
base64_codec.py | 53 def encode(self, input, final=False): 58 def decode(self, input, final=False):
|
hex_codec.py | 53 def encode(self, input, final=False): 58 def decode(self, input, final=False):
|
latin_1.py | 21 def encode(self, input, final=False): 25 def decode(self, input, final=False):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
ascii.py | 21 def encode(self, input, final=False): 25 def decode(self, input, final=False):
|
base64_codec.py | 53 def encode(self, input, final=False): 58 def decode(self, input, final=False):
|
hex_codec.py | 53 def encode(self, input, final=False): 58 def decode(self, input, final=False):
|
latin_1.py | 21 def encode(self, input, final=False): 25 def decode(self, input, final=False):
|
/external/v8/src/ |
json.js | 66 var final; 68 final = "[" + partial.join(",") + "]"; 71 final = "[\n" + indent + partial.join(separator) + "\n" + 74 final = "[]"; 77 return final; 114 var final; 116 final = "{" + partial.join(",") + "}"; 119 final = "{\n" + indent + partial.join(separator) + "\n" + 122 final = "{}"; 125 return final; [all...] |
/external/openfst/src/include/fst/ |
concat.h | 80 fst1->SetFinal(s1, fst2.Final(s2)); 93 Weight final = fst1->Final(s1); local 94 if (final != Weight::Zero()) { 97 fst1->AddArc(s1, Arc(0, 0, final, start2 + numstates1)); 145 Weight final = fst1.Final(s1); local 146 fst2->ReserveArcs(s2, fst1.NumArcs(s1) + (final != Weight::Zero() ? 1 : 0)); 147 if (final != Weight::Zero()) 148 fst2->AddArc(s2, Arc(0, 0, final, start2)) [all...] |