Home
last modified time | relevance | path

Searched refs:nm (Results 1 – 25 of 46) sorted by relevance

12

/AliOS-Things-master/components/py_engine/framework/
A Dnetwork.py3 import netmgr as nm namespace
13 nm.init()
31 nm.register_call_back(1,_on_wifi_cb)
88 return nm.connect(data['ssid'],data['password'])
94 nm.disconnect()
120 return nm.getType()
156 return nm.getStatus()
180 return nm.getInfo()
184 nm.register_call_back(1,func)
/AliOS-Things-master/components/amp-utility/python/
A Dnetwork.py10 nm.init()
55 nm.connect(data['ssid'],data['password'])
61 nm.disconnect
73 return nm.getType()
84 return nm.getStatus
/AliOS-Things-master/components/py_engine/tests/perf_bench/
A Dbenchrun.py13 for nm, p in bm_params.items():
14 if 10 * nm[0] <= 12 * N and nm[1] <= M and nm > cur_nm:
15 cur_nm = nm
/AliOS-Things-master/components/freetype/src/tools/
A Dapinames.c65 Name nm; in names_add() local
79 nm = the_names + nn; in names_add()
81 if ( (int)nm->hash == h && in names_add()
82 memcmp( name, nm->name, len ) == 0 && in names_add()
83 nm->name[len] == 0 ) in names_add()
96 nm = &the_names[num_names++]; in names_add()
98 nm->hash = h; in names_add()
99 nm->name = (char*)malloc( len+1 ); in names_add()
100 if ( nm->name == NULL ) in names_add()
103 memcpy( nm->name, name, len ); in names_add()
[all …]
/AliOS-Things-master/components/py_engine/engine/shared/netutils/
A Ddhcpserver.h41 ip_addr_t nm; member
46 void dhcp_server_init(dhcp_server_t *d, ip_addr_t *ip, ip_addr_t *nm);
A Ddhcpserver.c279 opt_write_n(&opt, DHCP_OPT_SUBNET_MASK, 4, &d->nm.addr); in dhcp_server_process()
290 void dhcp_server_init(dhcp_server_t *d, ip_addr_t *ip, ip_addr_t *nm) { in dhcp_server_init() argument
292 ip_addr_copy(d->nm, *nm); in dhcp_server_init()
/AliOS-Things-master/hardware/chip/rtl872xd/
A Dgen_crc_bin.py20 nm = os.path.join(toolchain_path, "arm-ali-aoseabi-nm") variable
89 subprocess.call(nm + " " + target_img2_axf + " | " + "sort " + "> " + target_img2_map,
99 subprocess.call(nm + " " + target_pure_img2_axf + " | sort > " + target_pure_img2_map,
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Djdarith.c109 register unsigned char nl, nm; in arith_decode() local
154 nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ in arith_decode()
165 *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */ in arith_decode()
177 *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */ in arith_decode()
A Djcarith.c222 register unsigned char nl, nm; in arith_encode() local
232 nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */ in arith_encode()
258 *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */ in arith_encode()
A Daclocal.m43680 lt_nm_to_check=${ac_tool_prefix}nm
3682 lt_nm_to_check="$lt_nm_to_check nm"
3693 # nm: unknown option "B" ignored
3697 mingw*) lt_bad_file=conftest.nm/nofile ;;
3746 test -z "$NM" && NM=nm
3751 [lt_cv_nm_interface="BSD nm"
4068 nlist=conftest.nm
4926 # -C means demangle to GNU nm, but means don't demangle to AIX nm.
4929 # GNU nm marks them as "W".
5380 # -C means demangle to GNU nm, but means don't demangle to AIX nm.
[all …]
/AliOS-Things-master/hardware/chip/rtl872xd/script/
A Dmanipulate_image.sh44 arm-ali-aoseabi-nm ${BIN_DIR}/${outputname}.axf | sort > ${BIN_DIR}/${outputname}.nmap
A Dpostbuild_img2.bat26 %tooldir%\nm ./Debug/Exe/application.axf | %tooldir%\sort > ./Debug/Exe/application.map
/AliOS-Things-master/components/SDL2/src/image/
A Dconfig.log132 configure:3889: checking for BSD- or MS-compatible name lister (nm)
133 configure:3938: result: /usr/bin/nm -B
134 configure:4056: checking the name lister (/usr/bin/nm -B) interface
136 configure:4066: /usr/bin/nm -B "conftest.o"
139 configure:4076: result: BSD nm
164 configure:5000: checking command to parse /usr/bin/nm -B output from gcc object
167 … /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z…
1260 lt_cv_nm_interface='BSD nm'
1263 lt_cv_path_NM='/usr/bin/nm -B'
1342 NM='/usr/bin/nm -B'
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/
A Dppp.c1075 ip4_addr_t ip, nm, gw; in sifaddr() local
1078 ip4_addr_set_u32(&nm, netmask); in sifaddr()
1080 netif_set_addr(pcb->netif, &ip, &nm, &gw); in sifaddr()
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_malloc.c2949 struct mallinfo nm = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; in internal_mallinfo() local
2972 nm.arena = sum; in internal_mallinfo()
2973 nm.ordblks = nfree; in internal_mallinfo()
2974 nm.hblkhd = m->footprint - sum; in internal_mallinfo()
2975 nm.usmblks = m->max_footprint; in internal_mallinfo()
2976 nm.uordblks = m->footprint - mfree; in internal_mallinfo()
2977 nm.fordblks = mfree; in internal_mallinfo()
2978 nm.keepcost = m->topsize; in internal_mallinfo()
2983 return nm; in internal_mallinfo()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/m4/
A Dlibtool.m43678 lt_nm_to_check=${ac_tool_prefix}nm
3680 lt_nm_to_check="$lt_nm_to_check nm"
3691 # nm: unknown option "B" ignored
3695 mingw*) lt_bad_file=conftest.nm/nofile ;;
3744 test -z "$NM" && NM=nm
3749 [lt_cv_nm_interface="BSD nm"
4066 nlist=conftest.nm
4924 # -C means demangle to GNU nm, but means don't demangle to AIX nm.
4927 # GNU nm marks them as "W".
5384 # -C means demangle to GNU nm, but means don't demangle to AIX nm.
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/
A Dlibtool.m43666 lt_nm_to_check=${ac_tool_prefix}nm
3668 lt_nm_to_check="$lt_nm_to_check nm"
3679 # nm: unknown option "B" ignored
3683 mingw*) lt_bad_file=conftest.nm/nofile ;;
3732 test -z "$NM" && NM=nm
3737 [lt_cv_nm_interface="BSD nm"
4054 nlist=conftest.nm
4912 # -C means demangle to GNU nm, but means don't demangle to AIX nm.
4915 # GNU nm marks them as "W".
5366 # -C means demangle to GNU nm, but means don't demangle to AIX nm.
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/m4/
A Dlibtool.m43666 lt_nm_to_check=${ac_tool_prefix}nm
3668 lt_nm_to_check="$lt_nm_to_check nm"
3679 # nm: unknown option "B" ignored
3683 mingw*) lt_bad_file=conftest.nm/nofile ;;
3732 test -z "$NM" && NM=nm
3737 [lt_cv_nm_interface="BSD nm"
4054 nlist=conftest.nm
4912 # -C means demangle to GNU nm, but means don't demangle to AIX nm.
4915 # GNU nm marks them as "W".
5366 # -C means demangle to GNU nm, but means don't demangle to AIX nm.
[all …]
/AliOS-Things-master/hardware/chip/haas1000/drivers/
A DMakefile377 NM = $(CROSS_COMPILE)nm.exe
389 NM = $(CROSS_COMPILE)nm
/AliOS-Things-master/components/SDL2/acinclude/
A Dlibtool.m43422 lt_nm_to_check="${ac_tool_prefix}nm"
3424 lt_nm_to_check="$lt_nm_to_check nm"
3433 # Check to see if the nm accepts a BSD-compat flag.
3435 # nm: unknown option "B" ignored
3483 test -z "$NM" && NM=nm
3488 [lt_cv_nm_interface="BSD nm"
3757 nlist=conftest.nm
4574 # -C means demangle to AIX nm, but means don't demangle with GNU nm
4576 # symbols, whereas GNU nm marks them as "W".
4991 # -C means demangle to AIX nm, but means don't demangle with GNU nm
[all …]
/AliOS-Things-master/components/SDL2/src/gfx/
A Dltconfig1569 if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
1572 elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
1582 test -z "$NM" && NM=nm
A Daclocal.m43417 lt_nm_to_check="${ac_tool_prefix}nm"
3419 lt_nm_to_check="$lt_nm_to_check nm"
3428 # Check to see if the nm accepts a BSD-compat flag.
3430 # nm: unknown option "B" ignored
3478 test -z "$NM" && NM=nm
3483 [lt_cv_nm_interface="BSD nm"
3752 nlist=conftest.nm
4569 # -C means demangle to AIX nm, but means don't demangle with GNU nm
4571 # symbols, whereas GNU nm marks them as "W".
4992 # -C means demangle to AIX nm, but means don't demangle with GNU nm
[all …]
/AliOS-Things-master/components/SDL2/src/gfx/Test/
A Dltconfig1569 if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
1572 elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
1582 test -z "$NM" && NM=nm
A Daclocal.m43417 lt_nm_to_check="${ac_tool_prefix}nm"
3419 lt_nm_to_check="$lt_nm_to_check nm"
3428 # Check to see if the nm accepts a BSD-compat flag.
3430 # nm: unknown option "B" ignored
3478 test -z "$NM" && NM=nm
3483 [lt_cv_nm_interface="BSD nm"
3752 nlist=conftest.nm
4569 # -C means demangle to AIX nm, but means don't demangle with GNU nm
4571 # symbols, whereas GNU nm marks them as "W".
4992 # -C means demangle to AIX nm, but means don't demangle with GNU nm
[all …]
/AliOS-Things-master/components/SDL2/src/image/autom4te.cache/
A Dtraces.2696 AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
701 lt_nm_to_check=${ac_tool_prefix}nm
703 lt_nm_to_check="$lt_nm_to_check nm"
712 # Check to see if the nm accepts a BSD-compat flag.
714 # nm: unknown option "B" ignored
715 # Tru64's nm complains that /dev/null is an invalid object file
716 # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
718 mingw*) lt_bad_file=conftest.nm/nofile ;;
767 test -z "$NM" && NM=nm
772 [lt_cv_nm_interface="BSD nm"
[all …]

Completed in 113 milliseconds

12