/libcore/ojluni/src/main/java/sun/nio/fs/ |
UnixUriUtils.java | 100 static URI toUri(UnixPath up) { 101 byte[] path = up.toAbsolutePath().asByteArray(); 118 if (UnixFileAttributes.get(up, true).isDirectory())
|
/system/core/libnetutils/ |
packet.c | 67 uint16_t *up = (uint16_t *)buffer; local 72 sum += *up++; 76 sum += (uint16_t) *(uint8_t *)up;
|
/device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/ |
subr_prf.c | 222 * the next characters (up to a control character, i.e. a character <= 32), 242 u_char *up; local 347 up = va_arg(ap, u_char *); 352 PCHAR(hex2ascii(*up >> 4)); 353 PCHAR(hex2ascii(*up & 0x0f)); 354 up++;
|
/device/google/contexthub/firmware/os/algos/ |
fusion.c | 200 struct Vec3 up = fusion->mData[0]; local 204 vec3Cross(&east, &fusion->mData[1], &up); 207 findOrthogonalVector(up.x, up.y, up.z, &east.x, &east.y, &east.z); 211 vec3Cross(&north, &up, &east); 214 initMatrixColumns(&R, &east, &north, &up); 607 struct Vec3 up; local 608 mat33Apply(&up, &R, &fusion->Ba); 611 vec3Cross(&east, m, &up); [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
wmm_ac.c | 75 u8 up = wmm_ac_get_user_priority(tspec); local 76 u8 ac = up_to_ac[up]; 98 ret = wpa_drv_add_ts(wpa_s, tsid, addr, up, admitted_time); 168 "Timeout getting ADDTS response (tsid=%d up=%d)", 672 u8 ac, tsid, up, dir; local 677 up = wmm_ac_get_user_priority(tspec); 678 ac = up_to_ac[up]; 691 up != wmm_ac_get_user_priority(&req->tspec) || 702 "ADDTS response status=%d tsid=%u up=%u direction=%u", 703 status_code, tsid, up, dir) 860 u8 ac, up; local [all...] |
/external/libmojo/third_party/jinja2/ |
filters.py | 55 """Returns a callable that looks up the given attribute from a 58 looked up as integers. 601 is used to fill up missing items. See this example: 633 - ``'common'`` rounds either up or down 634 - ``'ceil'`` always rounds up 721 It is also possible to sum up only certain attributes: 728 The `attribute` parameter was added to allow suming up over 776 looked up. 799 """Applies a filter on a sequence of objects or looks up an attribute.
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_build_util.cpp | 468 baseSym = new_Symbol(up->getProgram(), file, fileIdx); 482 v = insert(m, i, c, new_LValue(up->getFunction(), file)); 486 return up->getScratch(); 496 v = insert(m, i, c, new_LValue(up->getFunction(), file)); 504 return up->mkLoad(typeOfSize(eltSize), static_cast<Symbol *>(sym), ptr); 524 up->mkStore(OP_STORE, stTy, static_cast<Symbol *>(sym), ptr, value); 532 Symbol *sym = new_Symbol(up->getProgram(), file, 0);
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformSecLib/Ia32/ |
Flat32.asm | 120 ; Set up the selectors for 32 bit protected mode entry
177 ; Set up stack pointer
200 ; So we fix up the processor count
250 ; (6) Open up full SPI flash decode
323 ; Set up the HMBOUND register
375 ; Open up full 8MB SPI decode
612 DB 092h ; present, ring 0, data, expand-up, writable
622 DB 09Bh ; present, ring 0, data, expand-up, not-writable
632 DB 093h ; present, ring 0, data, expand-up, not-writable
643 DB 09Ah ; present, ring 0, data, expand-up, writable [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
nilcheck_test.go | 88 // clean up the removed nil check 125 // clean up the removed nil check 158 // clean up the removed nil check 192 // clean up the removed nil check 236 // clean up the removed nil check 277 // clean up the removed nil check 324 // clean up the removed nil check 375 // clean up the removed nil check 419 // clean up the removed nil check
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
nilcheck_test.go | 88 // clean up the removed nil check 125 // clean up the removed nil check 158 // clean up the removed nil check 192 // clean up the removed nil check 236 // clean up the removed nil check 277 // clean up the removed nil check 324 // clean up the removed nil check 375 // clean up the removed nil check 419 // clean up the removed nil check
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
ldo.c | 144 GCObject *up; local 146 for (up = L->openupval; up != NULL; up = up->gch.next) 147 gco2uv(up)->v = (gco2uv(up)->v - oldstack) + L->stack; 655 UpVal *up = luaF_newupval(L); local 656 cl->l.upvals[i] = up; 657 luaC_objbarrier(L, cl, up); [all...] |
/external/skia/third_party/lua/src/ |
ldo.c | 144 GCObject *up; local 146 for (up = L->openupval; up != NULL; up = up->gch.next) 147 gco2uv(up)->v = (gco2uv(up)->v - oldstack) + L->stack; 647 UpVal *up = luaF_newupval(L); local 648 cl->l.upvals[i] = up; 649 luaC_objbarrier(L, cl, up); [all...] |
/external/syslinux/com32/lua/src/ |
ldo.c | 144 GCObject *up; local 146 for (up = L->openupval; up != NULL; up = up->gch.next) 147 gco2uv(up)->v = (gco2uv(up)->v - oldstack) + L->stack; 655 UpVal *up = luaF_newupval(L); local 656 cl->l.upvals[i] = up; 657 luaC_objbarrier(L, cl, up); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
DataConnection.java | 430 * Begin setting up a data connection, calls setupDataCall 749 // - patch it up: 954 int up = 14; local [all...] |
/device/linaro/bootloader/edk2/IntelFspPkg/Library/SecFspSecPlatformLibNull/Ia32/ |
Flat32.asm | 72 ; Set up the selectors for 32 bit protected mode entry
155 DB 09Bh ; present, ring 0, data, expand-up, not-writable
165 DB 093h ; present, ring 0, data, expand-up, not-writable
|
/external/icu/icu4c/source/i18n/unicode/ |
calendar.h | 19 * 07/27/98 stephen Sync up with JDK 1.2 23 * 11/07/2003 srl Update, clean up documentation. 178 * month up in the date <code>December 12, <b>1996</b></code> results in 584 * Time Field Rolling function. Rolls (up/down) a single unit of time on the given 585 * time field. For example, to roll the current date up by one day, call 590 * changed. For instance, rolling the month up on the date 01/31/96 will result in 591 * 02/29/96. Rolling up always means rolling forward in time (unless the limit of the 593 * starting with 100 BC and rolling the year up results in 99 BC. 608 * @param up Indicates if the value of the specified time field is to be rolled 609 * up or rolled down. Use true if rolling up, false otherwise [all...] |
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/ |
CalendarCalc.java | 159 Button up; field in class:CalendarCalcFrame 182 // Set up the controls for each calendar we're demonstrating 249 up = new Button("^"); 251 up.setBackground(DemoUtility.bgColor); 253 upDown.add(up); 255 up.addActionListener(this); 462 if (evt.getSource() == up) { 510 if (evt.getID() == AWTEvent. Event.ACTION_EVENT && evt.target == up) {
|
/external/iproute2/examples/ |
dhcp-client-script | 164 LOG ifconfig $addrid $2 $mask_arg $brd_arg up 165 ifconfig $addrid $2 $mask_arg $brd_arg up 354 ifconfig $interface:dhcp up
|
/external/nanohttpd/webserver/src/main/java/fi/iki/elonen/ |
SimpleWebServer.java | 290 String up = null; local 295 up = uri.substring(0, slash + 1); 315 if (up != null || directories.size() + files.size() > 0) { 317 if (up != null || directories.size() > 0) { 319 if (up != null) { 320 msg.append("<li><a rel=\"directory\" href=\"").append(up).append("\"><span class=\"dirname\">..</span></a></b></li>");
|
/external/toybox/lib/ |
xwrap.c | 215 // and free up potentially overlapping pipe handles before reuse 605 struct passwd *up = getpwnam(name); local 609 if (up) return up->pw_uid; 633 struct passwd *up = getpwnam(name); local 635 if (!up) perror_exit("user '%s'", name); 636 return up;
|
/prebuilts/go/darwin-x86/src/net/ |
dnsconfig_unix.go | 26 timeout time.Duration // wait before giving up on a query, including retries 27 attempts int // lost packets before giving up on server 73 // to look it up.
|
/prebuilts/go/darwin-x86/src/sync/ |
cond_test.go | 41 <-awake // Will deadlock if no goroutine wakes up 69 t.Fatalf("wrong goroutine woke up: want %d, got %d", i-1, a) 118 t.Fatal("goroutine woke up twice")
|
/prebuilts/go/darwin-x86/test/ |
zerodivide.go | 38 up, vp, wp uintptr = 0, 0, 1 82 up++ 138 ErrorTest{"uintptr 0/0", func() { use(up / vp) }, "divide"}, 37 up, vp, wp uintptr = 0, 0, 1 var
|
/prebuilts/go/linux-x86/src/net/ |
dnsconfig_unix.go | 26 timeout time.Duration // wait before giving up on a query, including retries 27 attempts int // lost packets before giving up on server 73 // to look it up.
|
/prebuilts/go/linux-x86/src/sync/ |
cond_test.go | 41 <-awake // Will deadlock if no goroutine wakes up 69 t.Fatalf("wrong goroutine woke up: want %d, got %d", i-1, a) 118 t.Fatal("goroutine woke up twice")
|