HomeSort by relevance Sort by last modified time
    Searched refs:nsp (Results 1 - 21 of 21) sorted by null

  /external/bcc/tests/python/
test_brb.py 178 nsp = NSPopen(rt_ipdb.nl.netns, ["sysctl", "-w", "net.ipv4.ip_forward=1"])
179 nsp.wait(); nsp.release()
186 nsp = NSPopen(ns1_ipdb.nl.netns,
188 nsp.wait(); nsp.release()
189 nsp = NSPopen(ns2_ipdb.nl.netns,
191 nsp.wait(); nsp.release()
194 nsp = NSPopen(ns1_ipdb.nl.netns, ["ping", self.vm2_ip, "-c", "2"]
    [all...]
test_brb2.py 163 nsp = NSPopen(rt_ipdb.nl.netns, ["sysctl", "-w", "net.ipv4.ip_forward=1"])
164 nsp.wait(); nsp.release()
174 nsp = NSPopen(ns1_ipdb.nl.netns, ["ping", self.vm2_ip, "-c", "2"]); nsp.wait(); nsp.release()
180 nsp = NSPopen(ns1_ipdb.nl.netns, ["iperf", "-c", self.vm2_ip, "-t", "1", "-xSC"])
181 nsp.wait(); nsp.release()
186 nsp = NSPopenWithCheck(ns1_ipdb.nl.netns, ["netperf", "-l", "1", "-H", self.vm2_ip, "--", "-m", "65160 (…)
    [all...]
  /external/u-boot/scripts/
cleanpatch 22 my $nsp = 0;
28 my $npos = ($pos+$nsp+8) & ~7;
32 $nsp = 0;
34 $lo .= " " x $nsp;
35 $pos += $nsp;
36 $nsp = 0;
40 $nsp++;
42 $lo .= " " x $nsp;
43 $pos += $nsp;
44 $nsp = 0
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
PropertiesAffixPatternProvider.java 39 String nsp = properties.getNegativeSuffixPattern(); local
71 } else if (nsp != null) {
72 negSuffix = nsp;
PatternStringUtils.java 58 String nsp = properties.getNegativeSuffixPattern(); local
195 || (npp == null && nsp != null)
196 || (npp != null && (npp.length() != 1 || npp.charAt(0) != '-' || nsp.length() != 0))) {
204 if (nsp != null)
205 sb.append(nsp);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
PropertiesAffixPatternProvider.java 35 String nsp = properties.getNegativeSuffixPattern(); local
67 } else if (nsp != null) {
68 negSuffix = nsp;
PatternStringUtils.java 56 String nsp = properties.getNegativeSuffixPattern(); local
193 || (npp == null && nsp != null)
194 || (npp != null && (npp.length() != 1 || npp.charAt(0) != '-' || nsp.length() != 0))) {
202 if (nsp != null)
203 sb.append(nsp);
  /external/python/setuptools/setuptools/
namespaces.py 16 nsp = self._get_all_ns_packages()
17 if not nsp:
23 lines = map(self._gen_nspkg_line, nsp)
dist.py 154 for nsp in ns_packages:
155 if not dist.has_contents_for(nsp):
158 "namespace package %r" % nsp
160 parent, sep, child = nsp.rpartition('.')
164 " is not: please correct this in setup.py", nsp, parent
    [all...]
  /external/bcc/examples/networking/
simulation.py 41 nsp = NSPopen(ns_ipdb.nl.netns, cmd1)
42 nsp.wait(); nsp.release()
  /external/libldac/src/
sigana_ldac.c 77 int nsp)
84 for (isp = 0; isp < nsp; isp++) {
sigana_fixp_ldac.c 189 UINT32 nsp)
223 for (isp = LDAC_NSP_LOWENERGY; isp < nsp-1; isp++) {
257 UINT32 nsp)
264 for (isp = 0; isp < nsp; isp++) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
imageop.c 119 short *nsp; local
146 nsp = (short *)ncp;
161 *nsp++ = *SHORTP(cp, x, ix, iy);
174 short *nsp; local
199 nsp = (short *)ncp;
208 *nsp++ = *SHORTP(cp, x, oix, oiy);
  /external/python/cpython2/Modules/
imageop.c 122 short *nsp; local
149 nsp = (short *)ncp;
164 *nsp++ = *SHORTP(cp, x, ix, iy);
177 short *nsp; local
202 nsp = (short *)ncp;
211 *nsp++ = *SHORTP(cp, x, oix, oiy);
  /external/libpng/contrib/tools/
pngcp.c 450 unsigned int nsp; /* highest active entry+1 found so far */ member in struct:display
455 unsigned int tsp; /* nsp from the last run; this is the
828 * appropriately; this does all the work of next_opt (setting end/nsp) for
895 dp->nsp = dp->tsp;
909 * and there must be a valid entry to return. next_opt will set dp->nsp to
    [all...]
  /external/u-boot/drivers/core/
of_addr.c 119 static void dev_count_cells(const struct device_node *np, int *nap, int *nsp)
121 of_bus_default_count_cells(np, nap, nsp);
  /external/icu/icu4c/source/i18n/
number_mapper.cpp 344 const UnicodeString& nsp = properties.negativeSuffixPattern; local
376 } else if (!nsp.isBogus()) {
377 negSuffix = nsp;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DecimalFormat.java 551 String np = null, npp = null, ns = null, nsp = null; local
593 nsp = (String) fieldGetter.get("negSuffixPattern", null);
627 if (nsp == null) {
630 properties.setNegativeSuffixPattern(nsp);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DecimalFormat.java 564 String np = null, npp = null, ns = null, nsp = null; local
606 nsp = (String) fieldGetter.get("negSuffixPattern", null);
640 if (nsp == null) {
643 properties.setNegativeSuffixPattern(nsp);
    [all...]
  /external/python/setuptools/pkg_resources/
__init__.py     [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 1053 milliseconds