/external/libnfc-nci/src/nfa/hci/ |
D | nfa_hci_utils.c | 74 tNFA_HCI_DYN_GATE *pg = nfa_hci_cb.cfg.dyn_gates; in nfa_hciu_find_gate_by_gid() local 77 for ( ; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) in nfa_hciu_find_gate_by_gid() 79 if (pg->gate_id == gate_id) in nfa_hciu_find_gate_by_gid() 80 return (pg); in nfa_hciu_find_gate_by_gid() 97 tNFA_HCI_DYN_GATE *pg = nfa_hci_cb.cfg.dyn_gates; in nfa_hciu_find_gate_by_owner() local 100 for ( ; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) in nfa_hciu_find_gate_by_owner() 102 if (pg->gate_owner == app_handle) in nfa_hciu_find_gate_by_owner() 103 return (pg); in nfa_hciu_find_gate_by_owner() 121 tNFA_HCI_DYN_GATE *pg = nfa_hci_cb.cfg.dyn_gates; in nfa_hciu_find_gate_with_nopipes_by_owner() local 124 for ( ; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) in nfa_hciu_find_gate_with_nopipes_by_owner() [all …]
|
D | nfa_hci_api.c | 941 tNFA_HCI_DYN_GATE *pg = nfa_hci_cb.cfg.dyn_gates; in NFA_HciDebug() local 959 for (xx = 0; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) in NFA_HciDebug() 961 if (pg->gate_id != 0) in NFA_HciDebug() 964 xx, pg->gate_id, pg->gate_owner, pg->pipe_inx_mask); in NFA_HciDebug()
|
D | nfa_hci_act.c | 242 tNFA_HCI_DYN_GATE *pg = nfa_hci_cb.cfg.dyn_gates; in nfa_hci_api_register() local 260 for ( yy = 0; yy < NFA_HCI_MAX_GATE_CB; yy++, pg++) in nfa_hci_api_register() 262 if (pg->gate_owner == nfa_hci_cb.app_in_use) in nfa_hci_api_register() 265 num_pipes += nfa_hciu_count_pipes_on_gate (pg); in nfa_hci_api_register() 417 tNFA_HCI_DYN_GATE *pg = nfa_hci_cb.cfg.dyn_gates; in nfa_hci_api_get_gate_pipe_list() local 423 for ( xx = 0; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) in nfa_hci_api_get_gate_pipe_list() 425 if (pg->gate_owner == p_evt_data->get_gate_pipe_list.hci_handle) in nfa_hci_api_get_gate_pipe_list() 427 evt_data.gates_pipes.gate[evt_data.gates_pipes.num_gates++] = pg->gate_id; in nfa_hci_api_get_gate_pipe_list() 434 if (pp->local_gate == pg->gate_id) in nfa_hci_api_get_gate_pipe_list() 1038 tNFA_HCI_DYN_GATE *pg; in nfa_hci_api_add_static_pipe() local [all …]
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestInterpretedParsing.java | 43 Grammar pg = new Grammar( in testSimpleParse() local 49 g.importTokenVocabulary(pg); in testSimpleParse() 69 Interpreter parseEngine = new Interpreter(pg, tokens); in testSimpleParse() 78 Grammar pg = new Grammar( in testMismatchedTokenError() local 85 g.importTokenVocabulary(pg); in testMismatchedTokenError() 104 Interpreter parseEngine = new Interpreter(pg, tokens); in testMismatchedTokenError() 113 Grammar pg = new Grammar( in testMismatchedSetError() local 119 g.importTokenVocabulary(pg); in testMismatchedSetError() 139 Interpreter parseEngine = new Interpreter(pg, tokens); in testMismatchedSetError() 148 Grammar pg = new Grammar( in testNoViableAltError() local [all …]
|
D | TestInterpretedLexing.java | 157 Grammar pg = new Grammar( in testTokensRules() local 161 g.importTokenVocabulary(pg); in testTokensRules()
|
/external/yaffs2/yaffs2/direct/ |
D | yaffs_ramdisk.c | 122 int pg; in yramdisk_WriteChunkWithTagsToNAND() local 128 pg = chunkInNAND%32; in yramdisk_WriteChunkWithTagsToNAND() 133 memcpy(ramdisk.block[blk]->page[pg].data,data,512); in yramdisk_WriteChunkWithTagsToNAND() 142 memcpy(&ramdisk.block[blk]->page[pg].data[512],&pt,sizeof(pt)); in yramdisk_WriteChunkWithTagsToNAND() 153 int pg; in yramdisk_ReadChunkWithTagsFromNAND() local 159 pg = chunkInNAND%32; in yramdisk_ReadChunkWithTagsFromNAND() 164 memcpy(data,ramdisk.block[blk]->page[pg].data,512); in yramdisk_ReadChunkWithTagsFromNAND() 172 memcpy(&pt,&ramdisk.block[blk]->page[pg].data[512],sizeof(pt)); in yramdisk_ReadChunkWithTagsFromNAND() 184 int pg; in yramdisk_CheckChunkErased() local 191 pg = chunkInNAND%32; in yramdisk_CheckChunkErased() [all …]
|
D | yaffs_flashif.c | 118 int pg; in yflash_WriteChunkWithTagsToNAND() local 124 pg = chunkInNAND%32; in yflash_WriteChunkWithTagsToNAND() 129 memcpy(ramdisk.block[blk]->page[pg].data,data,512); in yflash_WriteChunkWithTagsToNAND() 137 memcpy(&ramdisk.block[blk]->page[pg].data[512],&pt,sizeof(pt)); in yflash_WriteChunkWithTagsToNAND() 148 int pg; in yflash_ReadChunkWithTagsFromNAND() local 154 pg = chunkInNAND%32; in yflash_ReadChunkWithTagsFromNAND() 159 memcpy(data,ramdisk.block[blk]->page[pg].data,512); in yflash_ReadChunkWithTagsFromNAND() 166 memcpy(&pt,&ramdisk.block[blk]->page[pg].data[512],sizeof(yaffs_PackedTags)); in yflash_ReadChunkWithTagsFromNAND() 177 int pg; in yflash_CheckChunkErased() local 184 pg = chunkInNAND%32; in yflash_CheckChunkErased() [all …]
|
D | yaffs_ramem2k.c | 195 int pg; in nandemul2k_WriteChunkWithTagsToNAND() local 202 pg = chunkInNAND%PAGES_PER_BLOCK; in nandemul2k_WriteChunkWithTagsToNAND() 207 x = ned.block[blk]->page[pg]->data; in nandemul2k_WriteChunkWithTagsToNAND() 214 ned.block[blk]->page[pg]->empty = 0; in nandemul2k_WriteChunkWithTagsToNAND() 220 x = &ned.block[blk]->page[pg]->data[PAGE_DATA_SIZE]; in nandemul2k_WriteChunkWithTagsToNAND() 238 int pg; in nandemul2k_ReadChunkWithTagsFromNAND() local 245 pg = chunkInNAND%PAGES_PER_BLOCK; in nandemul2k_ReadChunkWithTagsFromNAND() 250 memcpy(data,ned.block[blk]->page[pg]->data,PAGE_DATA_SIZE); in nandemul2k_ReadChunkWithTagsFromNAND() 256 x = &ned.block[blk]->page[pg]->data[PAGE_DATA_SIZE]; in nandemul2k_ReadChunkWithTagsFromNAND() 268 int pg; in nandemul2k_CheckChunkErased() local [all …]
|
D | yaffs_fileem.c | 194 yflash_Page pg; in yflash_EraseBlockInNAND() local 196 memset(&pg,0xff,sizeof(yflash_Page)); in yflash_EraseBlockInNAND() 202 write(filedisk.handle,&pg,528); in yflash_EraseBlockInNAND()
|
D | yaffs_fileem2k.c | 318 __u8 pg[PAGE_SIZE]; in yflash_EraseBlockInNAND() local 322 memset(pg,0xff,syz); in yflash_EraseBlockInNAND() 329 write(h,pg,PAGE_SIZE); in yflash_EraseBlockInNAND()
|
/external/kernel-headers/original/asm-generic/ |
D | memory_model.h | 42 #define __page_to_pfn(pg) \ argument 43 ({ struct page *__pg = (pg); \ 54 #define __page_to_pfn(pg) \ argument 55 ({ struct page *__pg = (pg); \
|
/external/kernel-headers/original/asm-arm/ |
D | proc-fns.h | 174 unsigned long pg; \ 176 : "=r" (pg) : : "cc"); \ 177 pg &= ~0x3fff; \ 178 (pgd_t *)phys_to_virt(pg); \
|
D | page.h | 131 #define clear_user_page(addr,vaddr,pg) __cpu_clear_user_page(addr, vaddr) argument 132 #define copy_user_page(to,from,vaddr,pg) __cpu_copy_user_page(to, from, vaddr) argument
|
/external/yaffs2/yaffs2/ |
D | yaffs_fs.c | 171 static int yaffs_prepare_write(struct file *f, struct page *pg, 173 static int yaffs_commit_write(struct file *f, struct page *pg, unsigned offset, 475 static int yaffs_readpage_nolock(struct file *f, struct page *pg) in yaffs_readpage_nolock() argument 486 (unsigned)(pg->index << PAGE_CACHE_SHIFT), in yaffs_readpage_nolock() 494 BUG_ON(!PageLocked(pg)); in yaffs_readpage_nolock() 496 if (!PageLocked(pg)) in yaffs_readpage_nolock() 497 PAGE_BUG(pg); in yaffs_readpage_nolock() 500 pg_buf = kmap(pg); in yaffs_readpage_nolock() 506 yaffs_ReadDataFromFile(obj, pg_buf, pg->index << PAGE_CACHE_SHIFT, in yaffs_readpage_nolock() 515 ClearPageUptodate(pg); in yaffs_readpage_nolock() [all …]
|
/external/libvorbis/ |
D | configure.ac | 133 # PROFILE="-Wall -Wextra -pg -g -O20 -ffast-math -D_REENTRANT -fsigned-char -fno-inli… 134 …PROFILE="-Wall -Wextra -pg -g -O20 -ffast-math -mno-ieee-fp -D_REENTRANT -fsigned-char -fno-inline" 178 PROFILE="-pg -g -O3 -ffast-math -mfused-madd -D_REENTRANT";; 182 PROFILE="-pg -g -O3 -ffast-math -mfused-madd -mcpu=750 -D_REENTRANT";; 186 PROFILE="-pg -g -O20 -ffast-math -D_REENTRANT -fsigned-char";; 199 PROFILE="-pg -g -O20 -D__NO_MATH_INLINES -fsigned-char $sparc_cpu" ;; 203 PROFILE="-DDARWIN -fno-common -force_cpusubtype_ALL -Wall -g -pg -O4 -ffast-math -fsigned-char";; 208 PROFILE="-pg -g -O20 -ffast-math -D_REENTRANT -fsigned-char";; 212 PROFILE="-O20 -g -pg -D__NO_MATH_INLINES -fsigned-char" ;;
|
/external/kernel-headers/original/asm-x86/ |
D | cacheflush.h | 17 #define flush_icache_page(vma,pg) do { } while (0) argument 18 #define flush_icache_user_range(vma,pg,adr,len) do { } while (0) argument
|
D | page_32.h | 34 #define clear_user_page(page, vaddr, pg) clear_page(page) argument 35 #define copy_user_page(to, from, vaddr, pg) copy_page(to, from) argument
|
/external/e2fsprogs/misc/ |
D | Makefile.in | 99 @PROFILE_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $< 124 @PROFILE_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/profile.o -c \ 155 $(Q) $(CC) $(ALL_LDFLAGS) -g -pg -o tune2fs.profiled \ 173 $(Q) $(CC) $(ALL_LDFLAGS) -g -pg -o blkid.profiled $(PROFILED_BLKID_OBJS) \ 182 $(Q) $(CC) $(ALL_LDFLAGS) -g -pg -o e2image.profiled \ 191 $(Q) $(CC) $(ALL_LDFLAGS) -g -pg -o e2undo.profiled \ 222 $(Q) $(CC) $(ALL_LDFLAGS) -g -pg -o mke2fs.profiled \ 241 $(Q) $(CC) $(ALL_LDFLAGS) -g -pg -o uuidgen.profiled \ 250 $(Q) $(CC) $(ALL_LDFLAGS) -g -pg -o uuidd.profiled $(PROFILED_UUIDD_OBJS) \ 261 $(Q) $(CC) $(ALL_LDFLAGS) -g -pg -o dumpe2fs.profiled \ [all …]
|
/external/clang/test/PCH/ |
D | chain-cxx.cpp | 22 void pg(); 121 ns::pg(); in test()
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | random-weight.h | 159 GallicWeightGenerator(const PG &pg) : PG(pg) {} in GallicWeightGenerator() argument
|
/external/libogg/ |
D | configure.in | 50 PROFILE="-Wall -W -pg -g -O20 -ffast-math -fsigned-char" 64 PROFILE="-pg -g -O20 -fsigned-char $sparc_cpu" 69 PROFILE="-fno-common -O4 -Wall -pg -g -fsigned-char -ffast-math" 74 PROFILE="-O20 -g -pg -fsigned-char"
|
/external/clang/test/Sema/ |
D | fp16-sema.c | 8 extern void (*pg) (__fp16*);
|
/external/yaffs2/yaffs2/mtdemul/ |
D | nandemul2k.c | 103 int pg = page%PAGES_PER_BLOCK; in nandemul2k_Read() local 107 memcpy(buffer,&ned.block[blk]->page[pg]->data[start],nBytes); in nandemul2k_Read() 114 int pg = page%PAGES_PER_BLOCK; in nandemul2k_Program() local 119 p = &ned.block[blk]->page[pg]->data[start]; in nandemul2k_Program()
|
/external/compiler-rt/make/platform/ |
D | darwin_fat.mk | 45 CFLAGS.Profile := $(CFLAGS) -pg -g
|
/external/compiler-rt/lib/asan/ |
D | asan_allocator.cc | 561 PageGroup *pg = (PageGroup*)(mem + n_chunks * size); in GetNewChunks() local 563 pg->beg = (uptr)mem; in GetNewChunks() 564 pg->end = pg->beg + mmap_size; in GetNewChunks() 565 pg->size_of_chunk = size; in GetNewChunks() 566 pg->last_chunk = (uptr)(mem + size * (n_chunks - 1)); in GetNewChunks() 569 page_groups_[idx] = pg; in GetNewChunks()
|