Home
last modified time | relevance | path

Searched refs:sets (Results 1 – 25 of 69) sorted by relevance

123

/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/cmsis/
A Dcore_cache.h122 uint32_t sets; in SCB_EnableDCache() local
131 sets = (uint32_t)(CCSIDR_SETS(ccsidr)); in SCB_EnableDCache()
141 } while(sets-- != 0U); in SCB_EnableDCache()
160 register uint32_t sets; in SCB_DisableDCache() local
182 } while(sets-- != 0U); in SCB_DisableDCache()
198 uint32_t sets; in SCB_InvalidateDCache() local
217 } while(sets-- != 0U); in SCB_InvalidateDCache()
233 uint32_t sets; in SCB_CleanDCache() local
252 } while(sets-- != 0U); in SCB_CleanDCache()
268 uint32_t sets; in SCB_CleanInvalidateDCache() local
[all …]
/AliOS-Things-master/components/csi/CMSIS/Core/Include/
A Dcachel1_armv7.h145 uint32_t sets; in SCB_EnableDCache() local
156 sets = (uint32_t)(CCSIDR_SETS(ccsidr)); in SCB_EnableDCache()
166 } while(sets-- != 0U); in SCB_EnableDCache()
185 uint32_t sets; in SCB_DisableDCache() local
207 } while(sets-- != 0U); in SCB_DisableDCache()
223 uint32_t sets; in SCB_InvalidateDCache() local
242 } while(sets-- != 0U); in SCB_InvalidateDCache()
258 uint32_t sets; in SCB_CleanDCache() local
277 } while(sets-- != 0U); in SCB_CleanDCache()
293 uint32_t sets; in SCB_CleanInvalidateDCache() local
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/tools/make/downloads/cmsis/CMSIS/Core/Include/
A Dcachel1_armv7.h145 uint32_t sets; in SCB_EnableDCache() local
156 sets = (uint32_t)(CCSIDR_SETS(ccsidr)); in SCB_EnableDCache()
166 } while(sets-- != 0U); in SCB_EnableDCache()
185 uint32_t sets; in SCB_DisableDCache() local
207 } while(sets-- != 0U); in SCB_DisableDCache()
223 uint32_t sets; in SCB_InvalidateDCache() local
242 } while(sets-- != 0U); in SCB_InvalidateDCache()
258 uint32_t sets; in SCB_CleanDCache() local
277 } while(sets-- != 0U); in SCB_CleanDCache()
293 uint32_t sets; in SCB_CleanInvalidateDCache() local
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/cmsis/CMSIS/Core/Include/
A Dcachel1_armv7.h145 uint32_t sets; in SCB_EnableDCache() local
156 sets = (uint32_t)(CCSIDR_SETS(ccsidr)); in SCB_EnableDCache()
166 } while(sets-- != 0U); in SCB_EnableDCache()
185 uint32_t sets; in SCB_DisableDCache() local
207 } while(sets-- != 0U); in SCB_DisableDCache()
223 uint32_t sets; in SCB_InvalidateDCache() local
242 } while(sets-- != 0U); in SCB_InvalidateDCache()
258 uint32_t sets; in SCB_CleanDCache() local
277 } while(sets-- != 0U); in SCB_CleanDCache()
293 uint32_t sets; in SCB_CleanInvalidateDCache() local
[all …]
/AliOS-Things-master/components/py_engine/tests/basics/
A Dset_isfooset.py1 sets = [set(), {1}, {1, 2, 3}, {3, 4, 5}, {5, 6, 7}] variable
2 args = sets + [[1], [1, 2], [1, 2 ,3]]
3 for i in sets:
A Dfrozenset_binop.py7 sets = [ variable
11 for s in sets:
12 for t in sets:
A Dset_binop.py3 sets = [set(), {1}, {1, 2}, {1, 2, 3}, {2, 3}, {2, 3, 5}, {5}, {7}] variable
4 for s in sets:
5 for t in sets:
/AliOS-Things-master/components/amp_adapter/platform/aos/network/
A Daos_tcp.c124 fd_set sets; in aos_tcp_write() local
140 FD_ZERO(&sets); in aos_tcp_write()
141 FD_SET(fd, &sets); in aos_tcp_write()
145 ret = select(fd + 1, NULL, &sets, NULL, &timeout); in aos_tcp_write()
147 if (0 == FD_ISSET(fd, &sets)) { in aos_tcp_write()
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/cmsis/inc/
A Dcore_cm7.h2295 uint32_t sets; in SCB_EnableDCache() local
2306 sets = (uint32_t)(CCSIDR_SETS(ccsidr)); in SCB_EnableDCache()
2316 } while(sets-- != 0U); in SCB_EnableDCache()
2335 uint32_t sets; in SCB_DisableDCache() local
2357 } while(sets-- != 0U); in SCB_DisableDCache()
2373 uint32_t sets; in SCB_InvalidateDCache() local
2392 } while(sets-- != 0U); in SCB_InvalidateDCache()
2408 uint32_t sets; in SCB_CleanDCache() local
2427 } while(sets-- != 0U); in SCB_CleanDCache()
2443 uint32_t sets; in SCB_CleanInvalidateDCache() local
[all …]
/AliOS-Things-master/components/py_engine/engine/lib/cmsis/inc/
A Dcore_cm7.h2295 uint32_t sets; in SCB_EnableDCache() local
2306 sets = (uint32_t)(CCSIDR_SETS(ccsidr)); in SCB_EnableDCache()
2316 } while(sets-- != 0U); in SCB_EnableDCache()
2335 uint32_t sets; in SCB_DisableDCache() local
2357 } while(sets-- != 0U); in SCB_DisableDCache()
2373 uint32_t sets; in SCB_InvalidateDCache() local
2392 } while(sets-- != 0U); in SCB_InvalidateDCache()
2408 uint32_t sets; in SCB_CleanDCache() local
2427 } while(sets-- != 0U); in SCB_CleanDCache()
2443 uint32_t sets; in SCB_CleanInvalidateDCache() local
[all …]
/AliOS-Things-master/components/http/src/
A Dhttp_aos_wrapper.c122 fd_set sets; in http_tcp_recv_wrapper() local
130 FD_ZERO(&sets); in http_tcp_recv_wrapper()
131 FD_SET(sockfd, &sets); in http_tcp_recv_wrapper()
133 select_ret = select(sockfd + 1, &sets, NULL, NULL, &timeout); in http_tcp_recv_wrapper()
136 if (0 == FD_ISSET(sockfd, &sets)) { in http_tcp_recv_wrapper()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/
A Doptions.awk73 sets[""] = "" # settings set by each option
316 sets[opt] = sets[opt] " " val
671 print " * sets: " sets[i], "*/" >out
760 nreqs = split(sets[i], r)
/AliOS-Things-master/components/freetype/src/autofit/
A Dafblue.hin93 /* The next level is to group blue strings into style-specific sets. */
/AliOS-Things-master/components/SDL2/test/
A Dconfigure.ac18 dnl (Haiku, for example, sets none of these.)
A DCMakeLists.txt9 # FIXME: Parent directory CMakeLists.txt only sets these for mingw/cygwin,
/AliOS-Things-master/components/freetype/src/pcf/
A DREADME61 sets available_size->width and available_size->height to 12.
/AliOS-Things-master/components/SDL2/docs/
A DREADME-dynapi.md58 First call to any SDL function sets the whole thing up.
92 an external SDL library. If not, it sets up the jump table using the current
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/doc/
A Drfc1952.txt140 a file system or anything about character sets or encodings
234 sets). The format of each member is specified in the following
376 methods. The "deflate" method (CM = 8) sets these flags as
485 character sets - Part 1: Latin alphabet No.1" (ISO 8859-1:1987).
A Drfc1950.txt139 produce data sets that conform to all the specifications presented
298 methods. The "deflate" method (CM = 8) sets these flags as
/AliOS-Things-master/components/SDL2/src/hidapi/m4/
A Dax_pthread.m412 # sets the PTHREAD_LIBS output variable to the threads library and linker
17 # Also sets PTHREAD_CC to any special C compiler that is needed for
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/tags/
A DREADME49 This routine sets a static pointer to the user-specified function
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/m4/
A Dax_pthread.m412 # sets the PTHREAD_LIBS output variable to the threads library and linker
17 # Also sets PTHREAD_CC to any special C compiler that is needed for
/AliOS-Things-master/components/SDL2/src/gfx/
A DChangeLog123 * added custom RGBA blitter function that sets/maintains target alpha
124 * added setAlpha function that sets alpha values in 32bit surfaces
A DINSTALL213 --enable-silent-rules' sets the default to minimal output, which can be
215 --disable-silent-rules' sets the default to verbose, which can be
/AliOS-Things-master/components/SDL2/src/gfx/Test/
A DINSTALL213 --enable-silent-rules' sets the default to minimal output, which can be
215 --disable-silent-rules' sets the default to verbose, which can be

Completed in 86 milliseconds

123