HomeSort by relevance Sort by last modified time
    Searched defs:FN (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/brotli/c/enc/
bit_cost.c 21 #define FN(X) X ## Literal
23 #undef FN
25 #define FN(X) X ## Command
27 #undef FN
29 #define FN(X) X ## Distance
31 #undef FN
histogram.h 25 #define FN(X) X ## Literal
31 #undef FN
33 #define FN(X) X ## Command
38 #undef FN
40 #define FN(X) X ## Distance
45 #undef FN
cluster.c 40 #define FN(X) X ## Literal
42 #undef FN
44 #define FN(X) X ## Command
46 #undef FN
48 #define FN(X) X ## Distance
50 #undef FN
cluster.h 30 #define FN(X) X ## Literal
32 #undef FN
34 #define FN(X) X ## Command
36 #undef FN
38 #define FN(X) X ## Distance
40 #undef FN
histogram_inc.h 12 typedef struct FN(Histogram) {
16 } FN(Histogram);
18 static BROTLI_INLINE void FN(HistogramClear)(FN(Histogram)* self) {
24 static BROTLI_INLINE void FN(ClearHistograms)(
25 FN(Histogram)* array, size_t length) {
27 for (i = 0; i < length; ++i) FN(HistogramClear)(array + i);
30 static BROTLI_INLINE void FN(HistogramAdd)(FN(Histogram)* self, size_t val) {
35 static BROTLI_INLINE void FN(HistogramAddVector)(FN(Histogram)* self
    [all...]
backward_references.c 50 #define FN(X) EXPAND_CAT(X, HASHER())
101 #undef FN
block_splitter.c 90 #define FN(X) X ## Literal
95 #undef FN
97 #define FN(X) X ## Command
101 #undef FN
103 #define FN(X) X ## Distance
107 #undef FN
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...]
hash_forgetful_chain_inc.h 8 /* template parameters: FN, BUCKET_BITS, NUM_BANKS, BANK_BITS,
27 static BROTLI_INLINE size_t FN(HashTypeLength)(void) { return 4; }
28 static BROTLI_INLINE size_t FN(StoreLookahead)(void) { return 4; }
31 static BROTLI_INLINE size_t FN(HashBytes)(const uint8_t *data) {
38 typedef struct FN(Slot) {
41 } FN(Slot);
43 typedef struct FN(Bank) {
44 FN(Slot) slots[BANK_SIZE];
45 } FN(Bank);
52 FN(Bank) banks[NUM_BANKS]
    [all...]
metablock.c 147 #define FN(X) X ## Literal
149 #undef FN
151 #define FN(X) X ## Command
153 #undef FN
155 #define FN(X) X ## Distance
157 #undef FN
  /external/clang/test/Lexer/
ms-compatibility.c 4 #define FN(x) L#x
6 void *v1 = FN(aaa);
  /external/clang/test/Preprocessor/
include-directive2.c 14 #define FN limits.h>
15 #include <FN
  /external/mksh/src/
emacsfn.h 23 #define FN(cname,sname,flags) static int x_##cname(int);
25 #define FN(cname,sname,flags) XFUNC_##cname,
28 #define FN(cname,sname,flags) { x_##cname, sname, flags },
32 #define F0 FN
36 FN(beg_hist, "beginning-of-history", 0)
37 FN(cls, "clear-screen", 0)
38 FN(comment, "comment", 0)
39 FN(comp_comm, "complete-command", 0)
40 FN(comp_file, "complete-file", 0)
41 FN(comp_list, "complete-list", 0
    [all...]
var_spec.h 23 #define FN(name) /* nothing */
25 #define FN(name) V_##name,
29 #define FN(name) #name,
33 #define F0 FN
36 /* NOTE: F0 are skipped for the ITEMS array, only FN generate names */
42 FN(BASHPID)
44 FN(BEGINLIBPATH)
46 FN(COLUMNS)
48 FN(ENDLIBPATH)
50 FN(EPOCHREALTIME
    [all...]
exprtok.h 25 #define FN(name, len, prec, enum) /* nothing */
29 #define FN(name, len, prec, enum) enum,
34 #define FN(name, len, prec, enum) name,
37 #define FN(name, len, prec, enum) len,
40 #define FN(name, len, prec, enum) prec,
45 #define F0 FN
56 FN("++", 2, P_PRIMARY, O_PLUSPLUS = 0) /* before + */
57 FN("--", 2, P_PRIMARY, O_MINUSMINUS) /* before - */
59 FN("==", 2, P_EQUALITY, O_EQ) /* before = */
60 FN("!=", 2, P_EQUALITY, O_NE) /* before ! *
    [all...]
  /external/compiler-rt/test/profile/Inputs/
instrprof-file_ex.c 15 const char *FN;
24 FN = argv[1];
25 truncate(FN, 0);
31 FILE *F = lprofOpenFileEx(FN);
33 fprintf(stderr, "Can not open file %s from child\n", FN);
51 F = lprofOpenFileEx(FN);
53 fprintf(stderr, "Can not open file %s from parent\n", FN);
  /external/libcxx/test/support/
platform_support.h 79 char FN[MAX_PATH + 1];
81 do { } while (0 == GetTempFileName(Path, "libcxx", 0, FN));
82 return FN;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
platform_support.h 77 char FN[MAX_PATH + 1];
79 do { } while (0 == GetTempFileName(Path, "libcxx", 0, FN));
80 return FN;
  /external/arm-neon-tests/
ref_dspfns.c 49 #define FN(X) X, __STR(X)
227 test_16_fn_32(FN(saturate), init_Overflow, init_Carry);
772 test_32_fn_32_32(FN(L_add_c), init_Overflow, init_Carry);
846 test_32_fn_32_16_16(FN(L_macNs), init_Overflow, init_Carry);
850 test_32_fn_32_16_16(FN(L_msuNs), init_Overflow, init_Carry);
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
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...]
  /frameworks/support/emoji/core/src/androidTest/java/androidx/emoji/util/
KeyboardUtil.java 37 private static final int FN = KeyEvent.META_FUNCTION_ON;
60 return keyEvent(KeyEvent.KEYCODE_DEL, FN);
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
importgl.h 104 #undef FN
  /external/libffi/src/x86/
win64.S 12 #define FN 72
16 unsigned *rvalue, void (*fn)());
123 call QWORD PTR FN[rbp]
384 callq *FN(%rbp)
  /external/python/cpython2/Modules/_ctypes/libffi/src/x86/
win64.S 12 #define FN 72
16 unsigned *rvalue, void (*fn)());
123 call QWORD PTR FN[rbp]
357 callq *FN(%rbp)
  /external/python/cpython3/Modules/_ctypes/libffi/src/x86/
win64.S 12 #define FN 72
16 unsigned *rvalue, void (*fn)());
123 call QWORD PTR FN[rbp]
357 callq *FN(%rbp)

Completed in 248 milliseconds

1 2 3