Home
last modified time | relevance | path

Searched refs:pc (Results 1 – 25 of 165) sorted by relevance

1234567

/AliOS-Things-master/components/py_engine/engine/lib/re1.5/
A Ddumpcode.c9 int pc = 0; in re1_5_dumpcode() local
11 while (pc < prog->bytelen) { in re1_5_dumpcode()
12 printf("%2d: ", pc); in re1_5_dumpcode()
18 … printf("split %d (%d)\n", pc + (signed char)code[pc] + 1, (signed char)code[pc]); in re1_5_dumpcode()
19 pc++; in re1_5_dumpcode()
22 … printf("rsplit %d (%d)\n", pc + (signed char)code[pc] + 1, (signed char)code[pc]); in re1_5_dumpcode()
23 pc++; in re1_5_dumpcode()
26 … printf("jmp %d (%d)\n", pc + (signed char)code[pc] + 1, (signed char)code[pc]); in re1_5_dumpcode()
27 pc++; in re1_5_dumpcode()
39 pc++; in re1_5_dumpcode()
[all …]
A Drecursiveloop.c16 if(inst_is_consumer(*pc)) { in recursiveloop()
21 switch(*pc++) { in recursiveloop()
23 if(*sp != *pc++) in recursiveloop()
33 pc += *(unsigned char*)pc * 2 + 1; in recursiveloop()
39 pc++; in recursiveloop()
45 off = (signed char)*pc++; in recursiveloop()
46 pc = pc + off; in recursiveloop()
49 off = (signed char)*pc++; in recursiveloop()
52 pc = pc + off; in recursiveloop()
55 off = (signed char)*pc++; in recursiveloop()
[all …]
A Dcharclass.c3 int _re1_5_classmatch(const char *pc, const char *sp) in _re1_5_classmatch() argument
6 int is_positive = (pc[-1] == Class); in _re1_5_classmatch()
7 int cnt = *pc++; in _re1_5_classmatch()
9 if (*sp >= *pc && *sp <= pc[1]) return is_positive; in _re1_5_classmatch()
10 pc += 2; in _re1_5_classmatch()
15 int _re1_5_namedclassmatch(const char *pc, const char *sp) in _re1_5_namedclassmatch() argument
18 int off = (*pc >> 5) & 1; in _re1_5_namedclassmatch()
19 if ((*pc | 0x20) == 'd') { in _re1_5_namedclassmatch()
23 } else if ((*pc | 0x20) == 's') { in _re1_5_namedclassmatch()
/AliOS-Things-master/components/cplusplus/example/cpp_aos/
A Dthread_test.cpp14 static thread *pc; variable
26 pc->start(); in demo_task1()
30 pc->terminate(); in demo_task1()
44 pc->stop(); in demo_task2()
59 pc->sleep((uint32_t)1000); in demo_task3()
68 pc = new thread; in test_thread()
76 pc->create((const name_t *)name, (void *)NULL, (uint8_t)20, (tick_t)50, in test_thread()
A Dbasic_test.cpp44 A *pc = (A *)pb; in class_ploy_test() local
52 pc->foo(); in class_ploy_test()
53 pc->fun(); in class_ploy_test()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/intel/
A Dfilter_sse2_intrinsics.c257 __m128i pa,pb,pc,smallest,nearest; in png_read_filter_row_paeth3_sse2() local
269 pc = _mm_add_epi16(pa,pb); in png_read_filter_row_paeth3_sse2()
273 pc = abs_i16(pc); /* |p-c| */ in png_read_filter_row_paeth3_sse2()
275 smallest = _mm_min_epi16(pc, _mm_min_epi16(pa, pb)); in png_read_filter_row_paeth3_sse2()
294 __m128i pa,pb,pc,smallest,nearest; in png_read_filter_row_paeth3_sse2() local
305 pc = _mm_add_epi16(pa,pb); in png_read_filter_row_paeth3_sse2()
309 pc = abs_i16(pc); /* |p-c| */ in png_read_filter_row_paeth3_sse2()
311 smallest = _mm_min_epi16(pc, _mm_min_epi16(pa, pb)); in png_read_filter_row_paeth3_sse2()
346 __m128i pa,pb,pc,smallest,nearest; in png_read_filter_row_paeth4_sse2() local
367 pc = _mm_add_epi16(pa,pb); in png_read_filter_row_paeth4_sse2()
[all …]
/AliOS-Things-master/components/SDL2/src/hidapi/
A DMakefile.am11 pkgconfig_DATA=pc/hidapi-hidraw.pc pc/hidapi-libusb.pc
13 pkgconfig_DATA=pc/hidapi.pc
/AliOS-Things-master/kernel/rhino/include/
A Dk_rbtree.h95 unsigned long pc; in rbtree_erase_augmented() local
98 pc = node->rbt_parent_color; in rbtree_erase_augmented()
99 parent = __rbtree_parent(pc); in rbtree_erase_augmented()
102 child->rbt_parent_color = pc; in rbtree_erase_augmented()
105 rebalance = __rbtree_is_black(pc) ? parent : NULL; in rbtree_erase_augmented()
108 tmp->rbt_parent_color = pc = node->rbt_parent_color; in rbtree_erase_augmented()
109 parent = __rbtree_parent(pc); in rbtree_erase_augmented()
136 pc = node->rbt_parent_color; in rbtree_erase_augmented()
137 tmp = __rbtree_parent(pc); in rbtree_erase_augmented()
140 successor->rbt_parent_color = pc; in rbtree_erase_augmented()
[all …]
/AliOS-Things-master/components/SDL2/src/render/software/
A DSDL_rotate.c236 tColorRGBA *pc, *sp; in _transformSurfaceRGBA() local
248 pc = (tColorRGBA*) dst->pixels; in _transformSurfaceRGBA()
288 pc->r = (((t2 - t1) * ey) >> 16) + t1; in _transformSurfaceRGBA()
301 pc++; in _transformSurfaceRGBA()
303 pc = (tColorRGBA *) ((Uint8 *) pc + gap); in _transformSurfaceRGBA()
320 pc++; in _transformSurfaceRGBA()
322 pc = (tColorRGBA *) ((Uint8 *) pc + gap); in _transformSurfaceRGBA()
349 tColorY *pc; in transformSurfaceY() local
359 pc = (tColorY*) dst->pixels; in transformSurfaceY()
382 pc++; in transformSurfaceY()
[all …]
/AliOS-Things-master/hardware/chip/rtl872xd/aos/
A Dsoc_impl.c141 int alios_debug_pc_check(char *pc) in alios_debug_pc_check() argument
143 if ((((uint32_t)pc > (uint32_t)__flash_text_start__) && in alios_debug_pc_check()
144 ((uint32_t)pc < (uint32_t)__flash_text_end__)) || in alios_debug_pc_check()
145 (((uint32_t)pc > (uint32_t)__ram_image2_text_start__) && in alios_debug_pc_check()
146 ((uint32_t)pc < (uint32_t)__ram_image2_text_end__))) { in alios_debug_pc_check()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dlibregexp.c2071 rs->pc = pc; in push_state()
2122 pc = rs->pc; in lre_exec_backtrack()
2138 pc = rs->pc; in lre_exec_backtrack()
2145 pc = (pc + 16) + (int)get_u32(pc); in lre_exec_backtrack()
2170 pc += 4; in lre_exec_backtrack()
2174 pc += 2; in lre_exec_backtrack()
2196 pc = pc + (int)val; in lre_exec_backtrack()
2207 pc += 4; in lre_exec_backtrack()
2272 pc += 4; in lre_exec_backtrack()
2280 pc += 4; in lre_exec_backtrack()
[all …]
/AliOS-Things-master/components/SDL2/src/gfx/
A Dconfig.guess279 echo alpha-pc-interix
833 echo x86_64-pc-mks
839 echo i586-pc-interix
1071 pc:*:*:*)
1078 echo i586-pc-msdosdjgpp
1081 echo i386-pc-mach3
1199 echo i586-pc-beos
1202 echo i586-pc-haiku
1249 UNAME_MACHINE=pc
1254 echo i386-pc-qnx
[all …]
/AliOS-Things-master/components/SDL2/src/gfx/Test/
A Dconfig.guess279 echo alpha-pc-interix
833 echo x86_64-pc-mks
839 echo i586-pc-interix
1071 pc:*:*:*)
1078 echo i586-pc-msdosdjgpp
1081 echo i386-pc-mach3
1199 echo i586-pc-beos
1202 echo i586-pc-haiku
1249 UNAME_MACHINE=pc
1254 echo i386-pc-qnx
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dconfig.guess298 echo alpha-pc-interix
856 echo x86_64-pc-mks
862 echo i586-pc-interix
1098 pc:*:*:*)
1105 echo i586-pc-msdosdjgpp
1108 echo i386-pc-mach3
1226 echo i586-pc-beos
1229 echo i586-pc-haiku
1291 UNAME_MACHINE=pc
1296 echo i386-pc-qnx
[all …]
/AliOS-Things-master/components/SDL2/src/image/
A Dconfig.guess863 echo "$UNAME_MACHINE"-pc-msys
866 echo "$UNAME_MACHINE"-pc-pw32
881 echo "$UNAME_MACHINE"-pc-uwin
1127 pc:*:*:*)
1134 echo i586-pc-msdosdjgpp
1137 echo i386-pc-mach3
1255 echo i586-pc-beos
1258 echo i586-pc-haiku
1330 UNAME_MACHINE=pc
1335 echo i386-pc-qnx
[all …]
/AliOS-Things-master/components/SDL2/build-scripts/
A Dconfig.guess325 echo alpha-pc-interix
884 echo x86_64-pc-mks
890 echo i586-pc-interix
1138 pc:*:*:*)
1145 echo i586-pc-msdosdjgpp
1148 echo i386-pc-mach3
1266 echo i586-pc-beos
1269 echo i586-pc-haiku
1341 UNAME_MACHINE=pc
1346 echo i386-pc-qnx
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/
A Dconfig.guess863 echo "$UNAME_MACHINE"-pc-msys
866 echo "$UNAME_MACHINE"-pc-pw32
881 echo "$UNAME_MACHINE"-pc-uwin
1123 pc:*:*:*)
1130 echo i586-pc-msdosdjgpp
1133 echo i386-pc-mach3
1251 echo i586-pc-beos
1254 echo i586-pc-haiku
1326 UNAME_MACHINE=pc
1331 echo i386-pc-qnx
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/config/
A Dconfig.guess277 echo alpha-pc-interix
792 echo ${UNAME_MACHINE}-pc-pw32
807 echo i${UNAME_MACHINE}-pc-mks
813 echo i586-pc-interix
1102 pc:*:*:*)
1106 echo i386-pc-msdosdjgpp
1109 echo i386-pc-mach3
1217 echo i586-pc-beos
1254 UNAME_MACHINE=pc
1259 echo i386-pc-qnx
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/
A Dmakefile.dec72 all: $(LIBSO) libpng.a pngtest libpng.pc libpng-config
81 libpng.pc:
82 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
86 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
A Dmakefile.beos87 all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
96 libpng.pc:
97 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
101 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
A Dmakefile.darwin83 all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
92 libpng.pc:
93 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
97 -e s!-lpng16!-lpng16\ -lz! > libpng.pc
A Dmakefile.hpux87 all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
96 libpng.pc:
97 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
101 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
A Dmakefile.sco83 all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
92 libpng.pc:
93 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
97 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
A Dmakefile.sggcc86 all: libpng.a pngtest shared libpng.pc libpng-config
97 libpng.pc:
98 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
102 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
A Dmakefile.sgi89 all: libpng.a pngtest shared libpng.pc libpng-config
98 libpng.pc:
99 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
103 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc

Completed in 55 milliseconds

1234567