/external/bc/tests/dc/ |
D | stdin.txt | 2 1 2+p 5 1+p 6 2+p 7 3+p 8 4+p 9 5+p 10 6+p 11 7+p 12 8+p 13 9+p [all …]
|
/external/bc/tests/dc/errors/ |
D | 26.txt | 7 1 2+p+p 8 3+p 9 4+p 10 5+p 11 6+p 12 7+p 13 8+p 14 9+p 15 10+p 16 11+p [all …]
|
D | 15.txt | 9 1 2+p+p 10 3+p 11 4+p 12 5+p 13 6+p 14 7+p 15 8+p 16 9+p 17 16+p 18 17+p [all …]
|
/external/bc/tests/fuzzing/dc_inputs/ |
D | stdin.txt | 2 1 2+p 5 1+p 6 2+p 7 3+p 8 4+p 9 5+p 10 6+p 11 7+p 12 8+p 13 9+p [all …]
|
D | 26.txt | 7 1 2+p+p 8 3+p 9 4+p 10 5+p 11 6+p 12 7+p 13 8+p 14 9+p 15 10+p 16 11+p [all …]
|
/external/ply/ply/example/BASIC/ |
D | basparse.py | 20 def p_program(p): argument 24 if len(p) == 2 and p[1]: 25 p[0] = {} 26 line, stat = p[1] 27 p[0][line] = stat 28 elif len(p) == 3: 29 p[0] = p[1] 30 if not p[0]: 31 p[0] = {} 32 if p[2]: [all …]
|
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/parse/ |
D | parser.py | 61 def p_root_1(self, p): argument 63 p[0] = ast.Mojom(None, ast.ImportList(), []) 65 def p_root_2(self, p): argument 67 if p[1].module is not None: 70 p[2].lineno, snippet=self._GetSnippet(p[2].lineno)) 71 if p[1].import_list.items or p[1].definition_list: 75 p[2].lineno, snippet=self._GetSnippet(p[2].lineno)) 76 p[0] = p[1] 77 p[0].module = p[2] 79 def p_root_3(self, p): argument [all …]
|
/external/rust/crates/bstr/src/unicode/fsm/ |
D | word_break_fwd.littleendian.dfa | 7 …_az������������������������������������������������������������������pTp.Bƪڪ�H… 9 …p��*=��vT�^�A�*=�^*=:��A�^�^�^_*=@_�_�_�_�_�_�`… 13 …��*=Ԝ�&��\:�f�"�8����>��8C@C�>���>@p�Z@/ /09:@AZ[^… 17 …������������������������5�58�58�58�58�5�P�p�x�p�������p� 18 �p��2�^���ι��p��R�`�t�����d�z���>>����>�r�>@…
|
D | word_break_fwd.bigendian.dfa | 7 …������������������������������������������������������������������pTpB.������… 9 …p���=*��Tv^�A��=*^�=*�:A�^�^�^�_=*_@_�_�_�_�_�`�… 13 …�=*����&\��:�f�"�8��>���C8C@>����@>�p@Z/ /09:@AZ[^__`… 17 …��������������������5�5�85�85�85�85���P�p�x�p�������p� 18 �p��2�^�������p��R�`�t�����d�z��>��>����>���r@…
|
/external/libaom/third_party/fastfeat/ |
D | fast_9.c | 38 int aom_fast9_corner_score(const byte* p, const int pixel[], int bstart) in aom_fast9_corner_score() argument 47 int cb = *p + b; in aom_fast9_corner_score() 48 int c_b= *p - b; in aom_fast9_corner_score() 51 if( p[pixel[0]] > cb) in aom_fast9_corner_score() 52 if( p[pixel[1]] > cb) in aom_fast9_corner_score() 53 if( p[pixel[2]] > cb) in aom_fast9_corner_score() 54 if( p[pixel[3]] > cb) in aom_fast9_corner_score() 55 if( p[pixel[4]] > cb) in aom_fast9_corner_score() 56 if( p[pixel[5]] > cb) in aom_fast9_corner_score() 57 if( p[pixel[6]] > cb) in aom_fast9_corner_score() [all …]
|
/external/python/pycparser/pycparser/ |
D | c_parser.py | 513 def p_translation_unit_or_empty(self, p): argument 517 if p[1] is None: 518 p[0] = c_ast.FileAST([]) 520 p[0] = c_ast.FileAST(p[1]) 522 def p_translation_unit_1(self, p): argument 527 p[0] = p[1] 529 def p_translation_unit_2(self, p): argument 532 p[1].extend(p[2]) 533 p[0] = p[1] 540 def p_external_declaration_1(self, p): argument [all …]
|
/external/tcpdump/ |
D | extract.h | 31 #define EXTRACT_U_1(p) ((uint8_t)(*(p))) argument 32 #define EXTRACT_S_1(p) ((int8_t)(*(p))) argument 89 EXTRACT_BE_U_2(const void *p) in EXTRACT_BE_U_2() argument 91 return ((uint16_t)ntohs(*(const uint16_t *)(p))); in EXTRACT_BE_U_2() 95 EXTRACT_BE_S_2(const void *p) in EXTRACT_BE_S_2() argument 97 return ((int16_t)ntohs(*(const int16_t *)(p))); in EXTRACT_BE_S_2() 101 EXTRACT_BE_U_4(const void *p) in EXTRACT_BE_U_4() argument 103 return ((uint32_t)ntohl(*(const uint32_t *)(p))); in EXTRACT_BE_U_4() 107 EXTRACT_BE_S_4(const void *p) in EXTRACT_BE_S_4() argument 109 return ((int32_t)ntohl(*(const int32_t *)(p))); in EXTRACT_BE_S_4() [all …]
|
/external/python/cpython3/Parser/ |
D | parser.c | 504 static mod_ty file_rule(Parser *p); 505 static mod_ty interactive_rule(Parser *p); 506 static mod_ty eval_rule(Parser *p); 507 static mod_ty func_type_rule(Parser *p); 508 static expr_ty fstring_rule(Parser *p); 509 static asdl_expr_seq* type_expressions_rule(Parser *p); 510 static asdl_stmt_seq* statements_rule(Parser *p); 511 static asdl_stmt_seq* statement_rule(Parser *p); 512 static asdl_stmt_seq* statement_newline_rule(Parser *p); 513 static asdl_stmt_seq* simple_stmts_rule(Parser *p); [all …]
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | refparser.py | 323 def p_statements(p): argument 328 if len(p) == 2 and p[1]: 329 m.children.append(p[1]) 330 elif len(p) > 2 and p[2]: 331 m.children.append(p[2]) 333 def p_statement(p): argument 341 p[0] = p[1] 343 def p_empty(p): argument 354 def p_policy_module_stmt(p): argument 357 m.name = p[3] [all …]
|
/external/libpcap/ |
D | extract.h | 77 EXTRACT_BE_U_2(const void *p) in EXTRACT_BE_U_2() argument 79 return ((uint16_t)ntohs(*(const uint16_t *)(p))); in EXTRACT_BE_U_2() 83 EXTRACT_BE_S_2(const void *p) in EXTRACT_BE_S_2() argument 85 return ((int16_t)ntohs(*(const int16_t *)(p))); in EXTRACT_BE_S_2() 89 EXTRACT_BE_U_4(const void *p) in EXTRACT_BE_U_4() argument 91 return ((uint32_t)ntohl(*(const uint32_t *)(p))); in EXTRACT_BE_U_4() 95 EXTRACT_BE_S_4(const void *p) in EXTRACT_BE_S_4() argument 97 return ((int32_t)ntohl(*(const int32_t *)(p))); in EXTRACT_BE_S_4() 101 EXTRACT_BE_U_8(const void *p) in EXTRACT_BE_U_8() argument 103 return ((uint64_t)(((uint64_t)ntohl(*((const uint32_t *)(p) + 0))) << 32 | in EXTRACT_BE_U_8() [all …]
|
/external/golang-protobuf/internal/impl/ |
D | pointer_unsafe.go | 40 type pointer struct{ p unsafe.Pointer } member 43 func pointerOf(p Pointer) pointer { 44 return pointer{p: unsafe.Pointer(p)} 49 return pointer{p: unsafe.Pointer(v.Pointer())} 58 return pointer{p: (*ifaceHeader)(unsafe.Pointer(&v)).Data} 62 func (p pointer) IsNil() bool { 63 return p.p == nil 68 func (p pointer) Apply(f offset) pointer { 69 if p.IsNil() { 72 return pointer{p: unsafe.Pointer(uintptr(p.p) + uintptr(f))} [all …]
|
/external/libxml2/fuzz/ |
D | regexp.dict | 20 cat_letter="\\p{L}" 21 cat_mark="\\p{M}" 22 cat_number="\\p{N}" 23 cat_punct="\\p{P}" 24 cat_sym="\\p{S}" 25 cat_sep="\\p{Z}" 26 cat_other="\\p{C}" 28 block_aegean_numbers="\\p{IsAegeanNumbers}" 29 block_alphabetic_presentation_forms="\\p{IsAlphabeticPresentationForms}" 30 block_arabic="\\p{IsArabic}" [all …]
|
/external/golang-protobuf/reflect/protoreflect/ |
D | source_gen.go | 9 func (p *SourcePath) appendFileDescriptorProto(b []byte) []byte { 10 if len(*p) == 0 { 13 switch (*p)[0] { 15 b = p.appendSingularField(b, "name", nil) 17 b = p.appendSingularField(b, "package", nil) 19 b = p.appendRepeatedField(b, "dependency", nil) 21 b = p.appendRepeatedField(b, "public_dependency", nil) 23 b = p.appendRepeatedField(b, "weak_dependency", nil) 25 b = p.appendRepeatedField(b, "message_type", (*SourcePath).appendDescriptorProto) 27 b = p.appendRepeatedField(b, "enum_type", (*SourcePath).appendEnumDescriptorProto) [all …]
|
/external/mesa3d/src/mesa/x86/rtasm/ |
D | x86sse.c | 22 static void do_realloc( struct x86_function *p ) in do_realloc() argument 24 if (p->size == 0) { in do_realloc() 25 p->size = 1024; in do_realloc() 26 p->store = _mesa_exec_malloc(p->size); in do_realloc() 27 p->csr = p->store; in do_realloc() 30 unsigned used = p->csr - p->store; in do_realloc() 31 unsigned char *tmp = p->store; in do_realloc() 32 p->size *= 2; in do_realloc() 33 p->store = _mesa_exec_malloc(p->size); in do_realloc() 34 memcpy(p->store, tmp, used); in do_realloc() [all …]
|
/external/bc/tests/bc/errors/ |
D | 03.txt | 2 …p(srt()-s(ssqrt()-p(sstss(ssqrt()-p(ssssq(ssqrt()-p(ssqrt()-sst()-p(qrt()-p(s()-p(sq(ssqrt()-p(ssq…
|
/external/rust/crates/grpcio-sys/grpc/third_party/upb/cmake/upb/json/ |
D | parser.c | 53 static bool is_top_level(upb_json_parser *p); 54 static bool is_wellknown_msg(upb_json_parser *p, upb_wellknowntype_t type); 55 static bool is_wellknown_field(upb_json_parser *p, upb_wellknowntype_t type); 57 static bool is_number_wrapper_object(upb_json_parser *p); 58 static bool does_number_wrapper_start(upb_json_parser *p); 59 static bool does_number_wrapper_end(upb_json_parser *p); 61 static bool is_string_wrapper_object(upb_json_parser *p); 62 static bool does_string_wrapper_start(upb_json_parser *p); 63 static bool does_string_wrapper_end(upb_json_parser *p); 65 static bool does_fieldmask_start(upb_json_parser *p); [all …]
|
/external/sg3_utils/include/ |
D | sg_unaligned.h | 70 static inline uint16_t sg_get_unaligned_be16(const void *p) in sg_get_unaligned_be16() argument 74 memcpy(&u, p, 2); in sg_get_unaligned_be16() 78 static inline uint32_t sg_get_unaligned_be32(const void *p) in sg_get_unaligned_be32() argument 82 memcpy(&u, p, 4); in sg_get_unaligned_be32() 86 static inline uint64_t sg_get_unaligned_be64(const void *p) in sg_get_unaligned_be64() argument 90 memcpy(&u, p, 8); in sg_get_unaligned_be64() 94 static inline void sg_put_unaligned_be16(uint16_t val, void *p) in sg_put_unaligned_be16() argument 98 memcpy(p, &u, 2); in sg_put_unaligned_be16() 101 static inline void sg_put_unaligned_be32(uint32_t val, void *p) in sg_put_unaligned_be32() argument 105 memcpy(p, &u, 4); in sg_put_unaligned_be32() [all …]
|
/external/mesa3d/src/gallium/auxiliary/rtasm/ |
D | rtasm_x86sse.c | 92 debug_printf( "\n%4x %14s ", p->csr - p->store, foo ); \ 140 static void do_realloc( struct x86_function *p ) in do_realloc() argument 142 if (p->store == p->error_overflow) { in do_realloc() 143 p->csr = p->store; in do_realloc() 145 else if (p->size == 0) { in do_realloc() 146 p->size = 1024; in do_realloc() 147 p->store = rtasm_exec_malloc(p->size); in do_realloc() 148 p->csr = p->store; in do_realloc() 151 uintptr_t used = pointer_to_uintptr( p->csr ) - pointer_to_uintptr( p->store ); in do_realloc() 152 unsigned char *tmp = p->store; in do_realloc() [all …]
|
/external/ply/ply/example/yply/ |
D | yparse.py | 17 def p_yacc(p): argument 21 def p_defsection(p): argument 24 p.lexer.lastsection = 1 33 def p_rulesection(p): argument 37 print_code(p[2], 0) 40 def p_definitions(p): argument 45 def p_definition_literal(p): argument 47 print_code(p[1], 0) 50 def p_definition_start(p): argument 52 print("start = '%s'" % p[2]) [all …]
|
/external/libutf/ |
D | runetypebody.h | 20 Rune *p; in isspacerune() local 22 p = rbsearch(c, __isspacer, nelem(__isspacer)/2, 2); in isspacerune() 23 if(p && c >= p[0] && c <= p[1]) in isspacerune() 76 Rune *p; in isdigitrune() local 78 p = rbsearch(c, __isdigitr, nelem(__isdigitr)/2, 2); in isdigitrune() 79 if(p && c >= p[0] && c <= p[1]) in isdigitrune() 579 Rune *p; in isalpharune() local 581 p = rbsearch(c, __isalphar, nelem(__isalphar)/2, 2); in isalpharune() 582 if(p && c >= p[0] && c <= p[1]) in isalpharune() 584 p = rbsearch(c, __isalphas, nelem(__isalphas), 1); in isalpharune() [all …]
|