/external/libcxx/test/support/ |
platform_support.h | 74 char FN[MAX_PATH + 1]; 76 do { } while (0 == GetTempFileName(Path, "libcxx", 0, FN)); 77 return FN;
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/ |
platform_support.h | 74 char FN[MAX_PATH + 1]; 76 do { } while (0 == GetTempFileName(Path, "libcxx", 0, FN)); 77 return FN;
|
/external/compiler-rt/test/msan/Linux/ |
sunrpc.cc | 27 bool_t res = FN(&xdrs, &x); 35 res = FN(&xdrs, &y);
|
/external/brotli/enc/ |
cluster_inc.h | 8 /* template parameters: FN, CODE */ 10 #define HistogramType FN(Histogram) 14 BROTLI_INTERNAL void FN(BrotliCompareAndPushToQueue)( 45 FN(HistogramAddHistogram)(&combo, &out[idx2]); 46 cost_combo = FN(BrotliPopulationCost)(&combo); 68 BROTLI_INTERNAL size_t FN(BrotliHistogramCombine)(HistogramType* out, 88 FN(BrotliCompareAndPushToQueue)(out, cluster_size, clusters[idx1], 106 FN(HistogramAddHistogram)(&out[best_idx1], &out[best_idx2]); 147 FN(BrotliCompareAndPushToQueue)(out, cluster_size, best_idx1, clusters[i], 155 BROTLI_INTERNAL double FN(BrotliHistogramBitCostDistance) [all...] |
metablock_inc.h | 8 /* template parameters: FN */ 10 #define HistogramType FN(Histogram) 14 typedef struct FN(BlockSplitter) { 43 } FN(BlockSplitter); 45 static void FN(InitBlockSplitter)( 46 MemoryManager* m, FN(BlockSplitter)* self, size_t alphabet_size, 76 FN(HistogramClear)(&self->histograms_[0]); 84 static void FN(BlockSplitterFinishBlock)( 85 FN(BlockSplitter)* self, BROTLI_BOOL is_final) { 102 FN(HistogramClear)(&histograms[self->curr_histogram_ix_]) [all...] |
block_splitter_inc.h | 8 /* template parameters: FN, DataType */ 10 #define HistogramType FN(Histogram) 12 static void FN(InitialEntropyCodes)(const DataType* data, size_t length, 19 FN(ClearHistograms)(histograms, num_histograms); 28 FN(HistogramAddVector)(&histograms[i], data + pos, stride); 32 static void FN(RandomSample)(unsigned int* seed, 44 FN(HistogramAddVector)(sample, data + pos, stride); 47 static void FN(RefineEntropyCodes)(const DataType* data, size_t length, 58 FN(HistogramClear)(&sample); 59 FN(RandomSample)(&seed, data, length, stride, &sample) [all...] |
block_encoder_inc.h | 8 /* template parameters: FN */ 10 #define HistogramType FN(Histogram) 14 static void FN(BuildAndStoreEntropyCodes)(MemoryManager* m, BlockEncoder* self,
|
block_splitter.c | 92 #define FN(X) X ## Literal 97 #undef FN 99 #define FN(X) X ## Command 103 #undef FN 105 #define FN(X) X ## Distance 109 #undef FN
|
bit_cost_inc.h | 8 /* template parameters: FN */ 10 #define HistogramType FN(Histogram) 12 double FN(BrotliPopulationCost)(const HistogramType* histogram) { 17 const size_t data_size = FN(HistogramDataSize)();
|
backward_references.c | 50 #define FN(X) EXPAND_CAT(X, HASHER()) 97 #undef FN
|
/external/emma/ |
test.sh | 79 FN:5,SubBunny::addOne (int): int 81 FN:12,SubBunny::identity (int): boolean 83 FN:3,SubBunny::SubBunny (): void 91 FN:23,Bunny::dontAddOne (int): int 93 FN:27,Bunny::identity (int): boolean 95 FN:16,Bunny::addOne (int): int 97 FN:5,Bunny::Bunny (): void 99 FN:31,Bunny::main (String []): void
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
variance_sse2.c | 327 #define FN(w, h, wf, wlog2, hlog2, opt, cast_prod, cast) \ 360 FN(64, 64, 16, 6, 6, opt1, (int64_t), (int64_t)); \ 361 FN(64, 32, 16, 6, 5, opt1, (int64_t), (int64_t)); \ 362 FN(32, 64, 16, 5, 6, opt1, (int64_t), (int64_t)); \ 363 FN(32, 32, 16, 5, 5, opt1, (int64_t), (int64_t)); \ 364 FN(32, 16, 16, 5, 4, opt1, (int64_t), (int64_t)); \ 365 FN(16, 32, 16, 4, 5, opt1, (int64_t), (int64_t)); \ 366 FN(16, 16, 16, 4, 4, opt1, (uint32_t), (int64_t)); \ 367 FN(16, 8, 16, 4, 3, opt1, (int32_t), (int32_t)); \ 368 FN(8, 16, 8, 3, 4, opt1, (int32_t), (int32_t)); [all...] |
highbd_variance_sse2.c | 265 #define FN(w, h, wf, wlog2, hlog2, opt, cast) \ 386 FN(64, 64, 16, 6, 6, opt, (int64_t)); \ 387 FN(64, 32, 16, 6, 5, opt, (int64_t)); \ 388 FN(32, 64, 16, 5, 6, opt, (int64_t)); \ 389 FN(32, 32, 16, 5, 5, opt, (int64_t)); \ 390 FN(32, 16, 16, 5, 4, opt, (int64_t)); \ 391 FN(16, 32, 16, 4, 5, opt, (int64_t)); \ 392 FN(16, 16, 16, 4, 4, opt, (int64_t)); \ 393 FN(16, 8, 16, 4, 3, opt, (int64_t)); \ 394 FN(8, 16, 8, 3, 4, opt, (int64_t)); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
basic-block.h | 326 /* Defines for accessing the fields of the CFG structure for function FN. */ 327 #define ENTRY_BLOCK_PTR_FOR_FUNCTION(FN) ((FN)->cfg->x_entry_block_ptr) 328 #define EXIT_BLOCK_PTR_FOR_FUNCTION(FN) ((FN)->cfg->x_exit_block_ptr) 329 #define basic_block_info_for_function(FN) ((FN)->cfg->x_basic_block_info) 330 #define n_basic_blocks_for_function(FN) ((FN)->cfg->x_n_basic_blocks) 331 #define n_edges_for_function(FN) ((FN)->cfg->x_n_edges [all...] |
except.h | 332 #define FOR_ALL_EH_REGION_FN(R, FN) \ 333 for ((R) = (FN)->eh->region_tree; (R) != NULL; (R) = ehr_next (R, NULL))
|
/external/swiftshader/third_party/LLVM/tools/llvm-link/ |
llvm-link.cpp | 56 const std::string &FN,
59 if (!Filename.set(FN)) {
60 errs() << "Invalid file name: '" << FN << "'\n";
|
/external/swiftshader/third_party/LLVM/lib/Linker/ |
Linker.cpp | 94 // LoadObject - Read in and parse the bitcode file named by FN and return the 98 Linker::LoadObject(const sys::Path &FN) { 103 if (error_code ec = MemoryBuffer::getFileOrSTDIN(FN.c_str(), Buffer)) 104 ParseErrorMessage = "Error reading file '" + FN.str() + "'" + ": " 111 Error = "Bitcode file '" + FN.str() + "' could not be loaded";
|
/external/llvm/lib/Support/ |
raw_ostream.cpp | 412 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { 413 if (FN.Hex) { 414 unsigned Nibbles = (64 - countLeadingZeros(FN.HexValue)+3)/4; 415 unsigned PrefixChars = FN.HexPrefix ? 2 : 0; 416 unsigned Width = std::max(FN.Width, Nibbles + PrefixChars); 419 if (!FN.HexPrefix) 423 unsigned long long N = FN.HexValue; 426 *--CurPtr = hexdigit(x, !FN.Upper); 433 if (FN.DecValue == 0) { 434 this->indent(FN.Width-1) [all...] |
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
raw_ostream.cpp | 339 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { 340 if (FN.Hex) { 342 if (FN.Upper && FN.HexPrefix) 344 else if (FN.Upper && !FN.HexPrefix) 346 else if (!FN.Upper && FN.HexPrefix) 350 llvm::write_hex(*this, FN.HexValue, Style, FN.Width) [all...] |
/frameworks/compile/libbcc/tools/bcc_strip_attr/ |
bcc_strip_attr.cpp | 97 const std::string &FN, 100 std::unique_ptr<Module> Result = parseIRFile(FN, Err, Context);
|
/prebuilts/go/darwin-x86/src/cmd/link/ |
linkbig_test.go | 29 const FN = 4 45 for j := 0; j < FN; j++ { 64 for i := 0; i < FN; i++ { 73 for i := 0; i < FN; i++ {
|
/prebuilts/go/linux-x86/src/cmd/link/ |
linkbig_test.go | 29 const FN = 4 45 for j := 0; j < FN; j++ { 64 for i := 0; i < FN; i++ { 73 for i := 0; i < FN; i++ {
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
SourceMgr.h | 173 SMDiagnostic(const SourceMgr &sm, SMLoc L, const std::string &FN, 177 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Message(Msg),
|
/frameworks/support/emoji/core/tests/java/android/support/text/emoji/util/ |
KeyboardUtil.java | 37 private static final int FN = KeyEvent.META_FUNCTION_ON; 60 return keyEvent(KeyEvent.KEYCODE_DEL, FN);
|
/external/e2fsprogs/contrib/ |
populate-extfs.sh | 87 for i in `find $SRCDIR -type f -links +1 -printf 'INODE=%i###FN=%p\n'`; do 89 echo ${FN#$SRCDIR} >>$INODE_DIR/$INODE
|