Home
last modified time | relevance | path

Searched refs:bc (Results 1 – 25 of 52) sorted by relevance

123

/AliOS-Things-master/components/fatfs/src/
A Dffunicode.c5701 WCHAR bc, nc, cmd; in ff_wtoupper() local
5706 bc = *p++; /* Get block base */ in ff_wtoupper()
5707 if (!bc || uni < bc) break; in ff_wtoupper()
5709 if (uni < bc + nc) { /* In the block? */ in ff_wtoupper()
5711 case 0: uni = p[uni - bc]; break; /* Table conversion */ in ff_wtoupper()
5712 case 1: uni -= (uni - bc) & 1; break; /* Case pairs */ in ff_wtoupper()
A Dff.c984 UINT wc, bc; in get_fat() local
997 bc = (UINT)clst; bc += bc / 2; in get_fat()
998 if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break; in get_fat()
999 wc = fs->win[bc++ % SS(fs)]; /* Get 1st byte of the entry */ in get_fat()
1000 if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break; in get_fat()
1063 UINT bc; in put_fat() local
1071 bc = (UINT)clst; bc += bc / 2; /* bc: byte offset of the entry */ in put_fat()
1072 res = move_window(fs, fs->fatbase + (bc / SS(fs))); in put_fat()
1074 p = fs->win + bc++ % SS(fs); in put_fat()
1077 res = move_window(fs, fs->fatbase + (bc / SS(fs))); in put_fat()
[all …]
/AliOS-Things-master/components/SDL2/test/nacl/
A DMakefile37 $(1)_x86_32.nexe : $(1).bc
40 $(1)_x86_64.nexe : $(1).bc
43 $(1)_arm.nexe : $(1).bc
46 $(1).pexe: $(1).bc
49 $(1).bc: $(2) $(foreach dep,$(4),$(STAMPDIR)/$(dep).stamp)
/AliOS-Things-master/components/py_engine/engine/lib/oofatfs/
A Dffunicode.c503 WORD uc, bc, nc, cmd; in ff_wtoupper() local
601 bc = *p++; /* Get the block base */ in ff_wtoupper()
602 if (bc == 0 || uc < bc) break; /* Not matched? */ in ff_wtoupper()
604 if (uc < bc + nc) { /* In the block? */ in ff_wtoupper()
606 case 0: uc = p[uc - bc]; break; /* Table conversion */ in ff_wtoupper()
607 case 1: uc -= (uc - bc) & 1; break; /* Case pairs */ in ff_wtoupper()
A Dff.c1124 UINT wc, bc; in get_fat() local
1137 bc = (UINT)clst; bc += bc / 2; in get_fat()
1138 if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break; in get_fat()
1139 wc = fs->win[bc++ % SS(fs)]; /* Get 1st byte of the entry */ in get_fat()
1140 if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break; in get_fat()
1202 UINT bc; in put_fat() local
1210 bc = (UINT)clst; bc += bc / 2; /* bc: byte offset of the entry */ in put_fat()
1211 res = move_window(fs, fs->fatbase + (bc / SS(fs))); in put_fat()
1213 p = fs->win + bc++ % SS(fs); in put_fat()
1216 res = move_window(fs, fs->fatbase + (bc / SS(fs))); in put_fat()
[all …]
/AliOS-Things-master/components/SDL2/src/joystick/psp/
A DSDL_sysjoystick.c75 point ab, bc, cd, abbc, bccd, dest; in calc_bezier_y() local
77 lerp (&bc, &b, &c, t); /* point between b and c */ in calc_bezier_y()
79 lerp (&abbc, &ab, &bc, t); /* point between ab and bc */ in calc_bezier_y()
80 lerp (&bccd, &bc, &cd, t); /* point between bc and cd */ in calc_bezier_y()
/AliOS-Things-master/components/py_engine/engine/py/
A Dshowbc.c132 mp_int_t bc = 0; in mp_bytecode_print() local
134 mp_printf(print, " bc=" INT_FMT " line=" UINT_FMT "\n", bc, source_line); in mp_bytecode_print()
138 bc += ci[0] & 0x1f; in mp_bytecode_print()
143 bc += ci[0] & 0xf; in mp_bytecode_print()
147 mp_printf(print, " bc=" INT_FMT " line=" UINT_FMT "\n", bc, source_line); in mp_bytecode_print()
A Ddynruntime.mk49 MPY_CROSS_FLAGS += -mcache-lookup-bc
57 MPY_CROSS_FLAGS += -mcache-lookup-bc
A Dobjfun.c168 const byte *bc = fun->bytecode; in mp_obj_fun_get_name() local
169 MP_BC_PRELUDE_SIG_DECODE(bc); in mp_obj_fun_get_name()
170 return mp_obj_code_get_name(bc); in mp_obj_fun_get_name()
A Dpy.cmake16 ${MICROPY_PY_DIR}/bc.c
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dupsampling_sse41.c75 const __m128i bc = _mm_xor_si128(b, c); /* bc = b^c */ \
77 const __m128i t1 = _mm_or_si128(ad, bc); /* (a^d) | (b^c) */ \
84 GET_M(bc, t, diag1); /* diag1 = (a + 3b + 3c + d) / 8 */ \
A Dupsampling_sse2.c73 const __m128i bc = _mm_xor_si128(b, c); /* bc = b^c */ \
75 const __m128i t1 = _mm_or_si128(ad, bc); /* (a^d) | (b^c) */ \
82 GET_M(bc, t, diag1); /* diag1 = (a + 3b + 3c + d) / 8 */ \
A Dupsampling_neon.c38 const uint16x8_t bc = vaddl_u8(b, c); \
39 const uint16x8_t abcd = vaddq_u16(ad, bc); \
43 const uint16x8_t bl = vaddq_u16(abcd, vshlq_n_u16(bc, 1)); \
A Dupsampling_msa.c541 v16u8 bc = b ^ c; \
542 v16u8 t0 = ad | bc; \
549 bc = bc & st; \
553 t2 = bc | t; \
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/priv/
A Dapi_msg.h98 } bc; member
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/priv/
A Dapi_msg.h98 } bc; member
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/
A Dtiff2ps.c2154 uint64 *bc; in PS_Lvl2page() local
2175 TIFFGetField(tif, TIFFTAG_TILEBYTECOUNTS, &bc); in PS_Lvl2page()
2178 TIFFGetField(tif, TIFFTAG_STRIPBYTECOUNTS, &bc); in PS_Lvl2page()
2182 chunk_size = (tsize_t) bc[0]; in PS_Lvl2page()
2184 if ((tsize_t) bc[chunk_no] > chunk_size) in PS_Lvl2page()
2185 chunk_size = (tsize_t) bc[chunk_no]; in PS_Lvl2page()
2747 uint64 *bc; in PSRawDataBW() local
2763 TIFFGetField(tif, TIFFTAG_STRIPBYTECOUNTS, &bc); in PSRawDataBW()
2769 bufsize = (uint32) bc[0]; in PSRawDataBW()
2772 if ( bc[s] > bufsize ) in PSRawDataBW()
[all …]
/AliOS-Things-master/components/lwip/lwip2.0.0/api/
A Dapi_lib.c266 API_MSG_VAR_REF(msg).msg.bc.ipaddr = API_MSG_VAR_REF(addr); in netconn_bind()
267 API_MSG_VAR_REF(msg).msg.bc.port = port; in netconn_bind()
298 API_MSG_VAR_REF(msg).msg.bc.ipaddr = API_MSG_VAR_REF(addr); in netconn_connect()
299 API_MSG_VAR_REF(msg).msg.bc.port = port; in netconn_connect()
A Dapi_msg.c1117 const ip_addr_t *ipaddr = API_EXPR_REF(msg->msg.bc.ipaddr);
1142 msg->err = udp_bind(msg->conn->pcb.udp, ipaddr, msg->msg.bc.port);
1147 msg->err = tcp_bind(msg->conn->pcb.tcp, ipaddr, msg->msg.bc.port);
1227 msg->err = raw_connect(msg->conn->pcb.raw, API_EXPR_REF(msg->msg.bc.ipaddr));
1232 … msg->err = udp_connect(msg->conn->pcb.udp, API_EXPR_REF(msg->msg.bc.ipaddr), msg->msg.bc.port);
1244 msg->err = tcp_connect(msg->conn->pcb.tcp, API_EXPR_REF(msg->msg.bc.ipaddr),
1245 msg->msg.bc.port, lwip_netconn_do_connected);
/AliOS-Things-master/components/py_engine/engine/mpy-cross/
A DREADME.md23 $ ./mpy-cross -mcache-lookup-bc foo.py
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dquickjs.c21382 dbuf_putc(bc, val); in emit_op()
25847 dbuf_realloc(bc, bc->size + chunk_size); in js_parse_for_in_of()
25848 dbuf_put(bc, bc->buf + pos_next, chunk_size); in js_parse_for_in_of()
26226 dbuf_realloc(bc, bc->size + chunk_size); in js_parse_statement_or_decl()
26227 dbuf_put(bc, bc->buf + pos_cont, chunk_size); in js_parse_statement_or_decl()
34598 memset(&bc, 0, sizeof(bc)); in JS_ReadFunctionTag()
34619 bc.js_mode = v8; in JS_ReadFunctionTag()
34639 if (bc.has_debug) { in JS_ReadFunctionTag()
34645 function_size += bc.cpool_count * sizeof(*bc.cpool); in JS_ReadFunctionTag()
34649 function_size += bc.closure_var_count * sizeof(*bc.closure_var); in JS_ReadFunctionTag()
[all …]
A Dlibregexp.c2556 uint8_t *bc; in main() local
2566 bc = lre_compile(&len, error_msg, sizeof(error_msg), argv[1], in main()
2568 if (!bc) { in main()
2576 ret = lre_exec(capture, bc, (uint8_t *)input, 0, input_len, 0, NULL); in main()
2579 capture_count = lre_get_capture_count(bc); in main()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/
A Dtest_ref.ppm4bc^���stpklh��������~������������ijm]^bXZ]deiZ[^\]aTUXefjooqwwy������������������cewLOdPTiPSkOQlIM…
/AliOS-Things-master/components/SDL2/test/
A Dconfigure.ac70 EXE=".bc"
/AliOS-Things-master/components/py_engine/engine/extmod/
A Dvfs_lfsx.c80 …int bc = MP_VFS_LFSx(dev_ioctl)(config, MP_BLOCKDEV_IOCTL_BLOCK_COUNT, 0, true); // get block count in MP_VFS_LFSx() local
86 config->block_count = bc; in MP_VFS_LFSx()

Completed in 186 milliseconds

123