Home
last modified time | relevance | path

Searched refs:word (Results 1 – 25 of 87) sorted by relevance

1234

/AliOS-Things-master/hardware/board/haas100/startup/
A Dstartup_gcc.s90 .word SDIO_RX_IRQHandler
98 .word tls_wl_data_tx_isr
109 .word I2C_IRQHandler
110 .word ADC_IRQHandler
111 .word SPI_LS_IRQHandler
112 .word SPI_HS_IRQHandler
113 .word UART0_IRQHandler
114 .word UART1_IRQHandler
115 .word GPIOA_IRQHandler
116 .word TIM0_IRQHandler
[all …]
/AliOS-Things-master/hardware/board/haaseduk1/startup/
A Dstartup_gcc.s90 .word SDIO_RX_IRQHandler
94 .word tls_wl_mac_isr
95 .word Default_Handler
96 .word tls_wl_rx_isr
109 .word I2C_IRQHandler
110 .word ADC_IRQHandler
122 .word WDG_IRQHandler
123 .word PMU_IRQHandler
125 .word PWM_IRQHandler
126 .word I2S_IRQHandler
[all …]
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/net_os/
A Dnet_bitops.h105 word >>= 32; in __ffs()
110 word >>= 16; in __ffs()
114 word >>= 8; in __ffs()
116 if ((word & 0xf) == 0) { in __ffs()
118 word >>= 4; in __ffs()
120 if ((word & 0x3) == 0) { in __ffs()
122 word >>= 2; in __ffs()
124 if ((word & 0x1) == 0) in __ffs()
132 if (((u32)word) == 0UL) in __ffs64()
186 return (word << shift) | (word >> (32 - shift)); in rol32()
[all …]
/AliOS-Things-master/components/vfs/
A Dvfs_file.c116 int word, bit; in vfs_fd_mark_open() local
125 word = fd / 32; in vfs_fd_mark_open()
128 if (g_opened_fd_bitmap[word] & (1 << bit)) in vfs_fd_mark_open()
135 g_opened_fd_bitmap[word] |= (1 << bit); in vfs_fd_mark_open()
143 int word, bit; in vfs_fd_mark_close() local
152 word = fd / 32; in vfs_fd_mark_close()
155 if (g_opened_fd_bitmap[word] & (1 << bit)) in vfs_fd_mark_close()
157 g_opened_fd_bitmap[word] &= ~(1 << bit); in vfs_fd_mark_close()
170 int word, bit; in vfs_fd_is_open() local
179 word = fd / 32; in vfs_fd_is_open()
[all …]
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/
A Dpppcrypt.c42 unsigned int word; in pppcrypt_get_7bits() local
44 word = (unsigned)input[startBit / 8] << 8; in pppcrypt_get_7bits()
45 word |= (unsigned)input[startBit / 8 + 1]; in pppcrypt_get_7bits()
47 word >>= 15 - (startBit % 8 + 7); in pppcrypt_get_7bits()
49 return word & 0xFE; in pppcrypt_get_7bits()
A Dauth.c139 #define ISWILD(word) (word[0] == '*' && word[1] == 0)
2076 ptr_word = ap->word;
2251 if (addrs->word[0] == '-')
2253 if (addrs->word[0] != '!')
2276 l = strlen(wp->word);
2334 char word[MAXWORDLEN];
2361 if (client != NULL && strcmp(word, client) != 0 && !ISWILD(word)) {
2365 if (!ISWILD(word))
2375 if (!ISWILD(word)) {
2408 if (word[0] == '@' && word[1] == '/') {
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Djmemdosa.asm242 mov word ptr es:[bx],ax
243 mov word ptr es:[bx+2],dx
275 mov dx,word ptr es:[bx+2]
276 mov si,word ptr es:[bx+6]
277 mov ds,word ptr es:[bx+8]
278 mov bx,word ptr es:[bx+4]
283 mov word ptr es:[bx+2],dx
284 mov word ptr es:[bx+4],cx
356 mov dx,word ptr es:[bx+2]
357 mov si,word ptr es:[bx+6]
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/mips-msa/
A Dlinux.c33 char word[10]; in png_have_msa() local
44 word[i++] = ch; in png_have_msa()
48 int val = strcmp(string, word); in png_have_msa()
54 memset(word, 0, 10); in png_have_msa()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/gcc_gvmat64/
A Dgvmat64.S289 movzx r12d,word ptr [r9]
290 movzx ebx, word ptr [r9 + r11 - 1]
298 cmp bx,word ptr [rsi + r8 - 1]
306 movzx r8d, word ptr [rdi + r8*2]
318 cmp bx,word ptr [rsi + r8 - 1]
326 movzx r8d, word ptr [rdi + r8*2]
337 cmp bx,word ptr [rsi + r8 - 1]
345 movzx r8d, word ptr [rdi + r8*2]
357 cmp bx,word ptr [rsi + r8 - 1]
399 cmp bx,word ptr [rsi + r8 - 1]
[all …]
/AliOS-Things-master/components/py_engine/engine/py/
A Dmakecompresseddata.py50 for word in line.split(" "):
51 topn[word] += 1
67 for word in line.split(" "):
68 if word in index_lookup:
69 result += "\\{:03o}".format(0b10000000 | index_lookup[word])
75 result += word
134 word = line[i : i + N]
135 if word in index_lookup:
136 result += "\\{:03o}".format(0b10000000 | index_lookup[word])
138 result += word
A Dqstr.c366 const byte *word = find_uncompressed_string(*src & 0x7f); in mp_decompress_rom_string() local
368 while ((*word & 0x80) == 0) { in mp_decompress_rom_string()
369 *dst++ = *word++; in mp_decompress_rom_string()
371 *dst++ = (*word & 0x7f); in mp_decompress_rom_string()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/cmsis/CMSIS/NN/Source/ConvolutionFunctions/
A Darm_convolve_HWC_q7_RGB.c142 top.word = __SXTB16(buf); in arm_convolve_HWC_q7_RGB()
143 bottom.word = __SXTB16(__ROR(buf, 8)); in arm_convolve_HWC_q7_RGB()
158 *__SIMD32(pBuffer) = __PKHBT(bottom.word, top.word, 0); in arm_convolve_HWC_q7_RGB()
172 *__SIMD32(pBuffer) = __PKHTB(top.word, bottom.word, 0); in arm_convolve_HWC_q7_RGB()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/tools/make/downloads/cmsis/CMSIS/NN/Source/ConvolutionFunctions/
A Darm_convolve_HWC_q7_RGB.c142 top.word = __SXTB16(buf); in arm_convolve_HWC_q7_RGB()
143 bottom.word = __SXTB16(__ROR(buf, 8)); in arm_convolve_HWC_q7_RGB()
158 *__SIMD32(pBuffer) = __PKHBT(bottom.word, top.word, 0); in arm_convolve_HWC_q7_RGB()
172 *__SIMD32(pBuffer) = __PKHTB(top.word, bottom.word, 0); in arm_convolve_HWC_q7_RGB()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/iostream2/
A Dzstream.h44 size_t value() const { return val.word; } in value()
46 struct Val { unsigned char byte; size_t word; } val; member
131 if (val.byte == 255) zs > val.word; in zstringlen()
132 else val.word = val.byte; in zstringlen()
278 val.byte = 255; val.word = ::strlen(x); in zstringlen()
279 if (val.word < 255) zs < (val.byte = val.word); in zstringlen()
/AliOS-Things-master/solutions/tflite_micro_speech_demo/micro_speech/train/speech_commands/
A Dinput_data.py284 _, word = os.path.split(os.path.dirname(wav_path))
285 word = word.lower()
288 if word == BACKGROUND_NOISE_DIR_NAME:
290 all_words[word] = True
294 if word in wanted_words_index:
295 self.data_index[set_index].append({'label': word, 'file': wav_path})
297 unknown_index[set_index].append({'label': word, 'file': wav_path})
326 for word in all_words:
327 if word in wanted_words_index:
328 self.word_to_index[word] = wanted_words_index[word]
[all …]
/AliOS-Things-master/components/py_engine/engine/lib/libm/
A Dfdlibm.h199 __uint32_t word; member
208 (i) = gf_u.word; \
216 sf_u.word = (i); \
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/cmsis/CMSIS/NN/Source/PoolingFunctions/
A Darm_max_pool_s8.c58 ref_max.word = arm_nn_read_q7x4(dst); in compare_and_replace_if_larger_q7()
59 comp_max.word = arm_nn_read_q7x4_ia(&src); in compare_and_replace_if_larger_q7()
78 write_q7x4_ia(&dst, ref_max.word); in compare_and_replace_if_larger_q7()
119 in.word = arm_nn_read_q7x4(source); in clamp_output()
130 write_q7x4_ia(&source, in.word); in clamp_output()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/tools/make/downloads/cmsis/CMSIS/NN/Source/PoolingFunctions/
A Darm_max_pool_s8.c58 ref_max.word = arm_nn_read_q7x4(dst); in compare_and_replace_if_larger_q7()
59 comp_max.word = arm_nn_read_q7x4_ia(&src); in compare_and_replace_if_larger_q7()
78 write_q7x4_ia(&dst, ref_max.word); in compare_and_replace_if_larger_q7()
119 in.word = arm_nn_read_q7x4(source); in clamp_output()
130 write_q7x4_ia(&source, in.word); in clamp_output()
/AliOS-Things-master/components/freetype/src/tools/
A Dglnames.py5045 def add( self, word, value ): argument
5046 if len( word ) == 0:
5050 letter = word[0]
5051 word = word[1:]
5059 child.add( word, value )
/AliOS-Things-master/components/freetype/src/tools/docmaker/
A Dtohtml.py226 def make_html_word( self, word ): argument
229 m = re_crossref.match( word )
244 m = re_italic.match( word )
250 m = re_bold.match( word )
256 return html_quote( word )
263 for word in words[1:]:
264 line = line + " " + self.make_html_word( word )
/AliOS-Things-master/components/SDL2/src/libm/
A Dmath_private.h161 u_int32_t word; member
170 (i) = gf_u.word; \
178 sf_u.word = (i); \
/AliOS-Things-master/components/cjson/src/
A DcJPath.c234 const char *word = ch - 1; in get_next_word() local
236 while (word > exp_str && is_space(*word)) { in get_next_word()
238 word--; in get_next_word()
/AliOS-Things-master/components/py_engine/tests/unix/
A Dextra_coverage.py.exp59 OverflowError: overflow converting long int to machine word
60 OverflowError: overflow converting long int to machine word
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/flatbuffers/include/flatbuffers/
A Dutil.h558 std::string wrapped, line, word; in WordWrap() local
560 in_stream >> word; in WordWrap()
561 line = word; in WordWrap()
563 while (in_stream >> word) { in WordWrap()
564 if ((line.length() + 1 + word.length() + wrapped_line_suffix.length()) < in WordWrap()
566 line += " " + word; in WordWrap()
569 line = wrapped_line_prefix + word; in WordWrap()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/examples/
A Denough.c464 code_t word; /* for counting bits in code_t */ in main() local
494 for (n = 0, word = 1; word; n++, word <<= 1) in main()

Completed in 43 milliseconds

1234