HomeSort by relevance Sort by last modified time
    Searched refs:SYM (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/ltp/pan/
tag_report.h 45 int test_result( char *, char *, char *, char *, SYM );
46 int cuts_report( SYM, SYM, char *, char * );
47 int tag_report( SYM, SYM, SYM );
48 int print_header( SYM );
49 int cuts_testcase( SYM, SYM );
scan.h 38 int scanner ( SYM );
39 int sym_dump_s ( SYM, int );
reporter.h 41 int reporter( SYM );
42 int test_end( SYM, SYM, SYM );
symbol.h 44 struct sym { struct
45 struct sym *next;
55 struct sym *sym; member in struct:symh
56 struct sym *cursor;
60 * The "SYM" typedef is the only external data type.
62 typedef struct symh *SYM;
78 SYM sym_open(int flags, int mode, int openinfo );
79 int sym_put (SYM sym, char *key, void *data, int flags )
    [all...]
reporter.c 52 static int scanner_reporter(SYM);
53 static int iscanner_reporter(SYM);
54 static int scanner_test_end(SYM, SYM, SYM);
55 static int iscanner_test_end(SYM, SYM, SYM);
57 static int (*reporter_func) (SYM) = scanner_reporter;
58 static int (*test_end_func) (SYM, SYM, SYM) = scanner_test_end
    [all...]
symbol.c 85 SYM newsym(void)
87 SYM h;
90 sym_error = "sym header malloc failed!";
95 h->sym = NULL;
100 static struct sym *mknode(struct sym *next, char *key, void *data)
102 struct sym *n;
104 if ((n = malloc(sizeof(struct sym))) == NULL) {
105 sym_error = "sym node malloc failed!";
114 sym_error = "sym node strdup(key) failed!"
    [all...]
scan.l 72 SYM keys=NULL; /* stored keywords */
73 SYM ctag=NULL; /* temporary - for storing current tag's info */
74 SYM alltags; /* entire tag database. set to scanner 'tags' param.*/
75 SYM k; /* temporary sym pointer -- for key removal */
77 static int test_output( SYM, SYM);
127 if( (k=(SYM)sym_get(alltags, "_RTS")) != NULL) {
298 scanner(SYM tags)
315 test_output(SYM tag, SYM keys
    [all...]
ltp-scanner.c 139 SYM tags; /* tag data */
tag_report.c 55 int test_result(char *tag, char *tcid, char *tc, char *result, SYM tags)
109 int cuts_report(SYM tags, SYM keys, char *at, char *tag)
225 int tag_report(SYM alltags, SYM ctag, SYM keys)
377 int print_header(SYM tags)
415 * This is passed s SYM for the current tag and the initiation keys.
418 int cuts_testcase(SYM tag, SYM keys
    [all...]
  /external/llvm/lib/Support/
SearchForAddressOfSpecialSymbol.cpp 21 #define EXPLICIT_SYMBOL(SYM) \
22 extern void *SYM; if (!strcmp(symbolName, #SYM)) return &SYM
DynamicLibrary.cpp 140 #define EXPLICIT_SYMBOL(SYM) \
141 if (!strcmp(symbolName, #SYM)) return &SYM
  /external/swiftshader/third_party/LLVM/lib/Support/
SearchForAddressOfSpecialSymbol.cpp 21 #define EXPLICIT_SYMBOL(SYM) \
22 extern void *SYM; if (!strcmp(symbolName, #SYM)) return &SYM
DynamicLibrary.cpp 157 #define EXPLICIT_SYMBOL(SYM) \
158 if (!strcmp(symbolName, #SYM)) return &SYM
  /bionic/tests/
cfi_test.cpp 46 #define SYM(type, name) auto name = reinterpret_cast<type>(dlsym(handle, #name))
47 SYM(size_t (*)(), get_count);
48 SYM(uint64_t(*)(), get_last_type_id);
49 SYM(void* (*)(), get_last_address);
50 SYM(void* (*)(), get_last_diag);
51 SYM(void* (*)(), get_global_address);
52 SYM(void (*)(uint64_t, void*, void*), __cfi_check);
53 SYM(char*, bss);
54 #undef SYM
  /frameworks/base/core/java/android/text/method/
MetaKeyKeyListener.java 29 * meta keys such as SHIFT, ALT and SYM as well as the pseudo-meta state of selecting text.
85 * Flag that indicates that the SYM key is on.
99 * Flag that indicates that the SYM key is locked.
135 private static final Object SYM = new NoCopySpan.Concrete();
147 text.removeSpan(SYM);
162 getActive(text, SYM, META_SYM_ON, META_SYM_LOCKED) |
208 return getActive(text, SYM, PRESSED_RETURN_VALUE, LOCKED_RETURN_VALUE);
275 adjust(content, SYM);
283 return what == CAP || what == ALT || what == SYM ||
311 resetLock(content, SYM);
    [all...]
  /external/llvm/lib/Support/Windows/
explicit_symbols.inc 74 #define INLINE_DEF_FLOAT_SYMBOL(SYM, ARGC) INLINE_DEF_SYMBOL##ARGC(float, SYM)
  /external/ltp/testcases/kernel/syscalls/nftw/
nftw.c 132 SYM,
198 SYM, "../../../dirh"}, {
208 SYM, "../dir_right.2"}, {
211 SYM,
nftw64.c 132 SYM,
198 SYM, "../../../dirh"}, {
208 SYM, "../dir_right.2"}, {
211 SYM,
nftw64.h 62 #define SYM 2
nftw.h 63 #define SYM 2
tools.c 89 } else if (pathdat[i].type == SYM) {
tools64.c 88 } else if (pathdat[i].type == SYM) {
  /external/e2fsprogs/e2fsck/
sigcatcher.c 28 #define DEFINE_ENTRY(SYM) { SYM, #SYM },
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-use-machine.rl 64 S = 19; # SYM
  /toolchain/binutils/binutils-2.27/opcodes/
sh64-dis.c 31 #define ELF_MODE32_CODE_LABEL_P(SYM) \
32 (((elf_symbol_type *) (SYM))->internal_elf_sym.st_other & STO_SH5_ISA32)

Completed in 440 milliseconds

1 2 3