HomeSort by relevance Sort by last modified time
    Searched defs:up (Results 51 - 75 of 205) sorted by null

1 23 4 5 6 7 8 9

  /external/elfutils/libdw/
memory-access.h 192 const union unaligned *up = p; local
194 return bswap_16 (up->u2);
195 return up->u2;
200 const union unaligned *up = p; local
202 return (int16_t) bswap_16 (up->u2);
203 return up->s2;
209 const union unaligned *up = p; local
210 return up->u4;
215 const union unaligned *up = p; local
217 return bswap_32 (up->u4)
223 const union unaligned *up = p; local
232 const union unaligned *up = p; local
240 const union unaligned *up = p; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
wmm.c 167 int up, psb, dir, tid; local
170 up = (tspec->ts_info[1] >> 3) & 0x07;
174 wpa_printf(MSG_DEBUG, "WMM: TS Info: UP=%d PSB=%d Direction=%d TID=%d",
175 up, psb, dir, tid);
  /frameworks/support/v4/honeycomb/android/support/v4/app/
ActionBarDrawerToggleHoneycomb.java 35 * Before JB-MR2 (API 18) it was not possible to change the home-as-up indicator glyph
58 Log.w(TAG, "Couldn't set home-as-up indicator via JB-MR2 API", e);
63 Log.w(TAG, "Couldn't set home-as-up indicator");
125 final View up = first.getId() == android.R.id.home ? second : first; local
127 if (up instanceof ImageView) {
129 upIndicatorView = (ImageView) up;
  /system/core/libnetutils/
packet.c 67 uint16_t *up = (uint16_t *)buffer; local
72 sum += *up++;
76 sum += (uint16_t) *(uint8_t *)up;
  /cts/tests/tests/text/src/android/text/method/cts/
LinkMovementMethodTest.java 303 assertTrue(method.up(mView, mSpannable));
306 assertTrue(method.up(mView, mSpannable));
309 assertFalse(method.up(mView, mSpannable));
314 method.up(null, mSpannable);
321 method.up(mView, null);
425 assertFalse(method.up(mView, mSpannable));
524 protected boolean up(TextView widget, Spannable buffer) { method in class:LinkMovementMethodTest.MyLinkMovementMethod
525 return super.up(widget, buffer);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 46 * includes pointers to DOWN and UP and EOF nodes.
57 * This is the old CommonTreeNodeStream that buffered up entire node stream.
116 protected object up; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
120 * This buffer includes pointers to DOWN, UP, and EOF nodes.
139 /** <summary>Reuse same DOWN, UP navigation nodes unless this is true</summary> */
166 up = adaptor.Create(TokenTypes.Up, "UP");
248 * Don't do DOWN, UP nodes if its a list (t is isNil).
271 // add UP node if t has childre
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 47 * includes pointers to DOWN and UP and EOF nodes.
58 * This is the old CommonTreeNodeStream that buffered up entire node stream.
125 protected object up; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
129 * This buffer includes pointers to DOWN, UP, and EOF nodes.
148 /** <summary>Reuse same DOWN, UP navigation nodes unless this is true</summary> */
178 up = adaptor.Create( TokenTypes.Up, "UP" );
283 * Don't do DOWN, UP nodes if its a list (t is isNil).
311 // add UP node if t has childre
    [all...]
  /external/chromium_org/remoting/host/win/
rdp_client_window.cc 34 // is up.
177 UINT up = KF_UP | KF_REPEAT; local
196 MAKELPARAM(1, end | up | KF_ALTDOWN));
202 SendMessage(input_window, WM_KEYUP, VK_MENU, MAKELPARAM(1, alt | up));
208 SendMessage(input_window, WM_KEYUP, VK_CONTROL, MAKELPARAM(1, control | up));
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
PannerNode.cpp 288 FloatPoint3D up = listenerRight.cross(listenerFrontNorm); local
290 float upProjection = sourceListener.dot(up);
292 FloatPoint3D projectedSource = sourceListener - upProjection * up;
310 double elevation = 90.0 - 180.0 * acos(sourceListener.dot(up)) / piDouble;
361 // Limit the pitch shifting to 4 octaves up and 3 octaves down.
  /external/chromium_org/third_party/libpng/
pngwrite.c 108 png_unknown_chunk *up; local
112 for (up = info_ptr->unknown_chunks;
113 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
114 up++)
116 int keep = png_handle_as_unknown(png_ptr, up->name);
118 up->location && !(up->location & PNG_HAVE_PLTE) &&
119 !(up->location & PNG_HAVE_IDAT) &&
120 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
123 if (up->size == 0
286 png_unknown_chunk *up; local
390 png_unknown_chunk *up; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 130 DataArray(BuildUtil *bld) : up(bld) { }
149 BuildUtil *up; member in class:nv50_ir::BuildUtil::DataArray
  /external/chromium_org/third_party/skia/src/svg/
SkSVGParser.cpp 392 SkSVGElement* up = parent; local
393 while (up && up->fIsDef == false) {
394 up->fIsDef = true;
395 up = up->fParent;
399 SkSVGElement* up = parent; local
400 while (up && up->fIsNotDef == false) {
401 up->fIsNotDef = true
    [all...]
  /external/chromium_org/ui/events/gestures/
gesture_types.h 119 return data.swipe.up;
166 bool up; member in struct:ui::GestureEventDetails::__anon17549::__anon17553
  /external/dnsmasq/src/
lease.c 266 struct dhcp_lease *lease, *tmp, **up; local
268 for (lease = leases, up = &leases; lease; lease = tmp)
277 *up = lease->next; /* unlink */
287 up = &lease->next;
450 /* If a machine turns up on a new net without dropping the old lease,
451 or two machines claim the same name, then we end up with two interfaces with
534 /* If we're going to be sending DBus signals, but the connection is not yet up,
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
FlyByCamera.java 95 * Sets the up vector that should be used for the camera.
256 Vector3f up = cam.getUp(); local
260 mat.mult(up, up);
265 q.fromAxes(left, up, dir);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestQ3.java 62 private boolean left=false,right=false,up=false,down=false; field in class:TestQ3
132 if(up)
167 up=true;
169 up=false;
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloCollision.java 66 private boolean left = false, right = false, up = false, down = false; field in class:HelloCollision
74 /** Set up Physics */
90 // We set up collision detection for the scene by creating a
97 // We set up collision detection for the player by creating
133 inputManager.addMapping("Up", new KeyTrigger(KeyInput.KEY_W));
138 inputManager.addListener(this, "Up");
150 } else if (binding.equals("Up")) {
151 if (value) { up = true; } else { up = false; }
173 if (up) { walkDirection.addLocal(camDir);
    [all...]
HelloTerrainCollision.java 70 private boolean left = false, right = false, up = false, down = false; field in class:HelloTerrainCollision
81 /** Set up Physics */
148 // We set up collision detection for the scene by creating a
155 // We set up collision detection for the player by creating
178 inputManager.addMapping("Up", new KeyTrigger(KeyInput.KEY_W));
183 inputManager.addListener(this, "Up");
195 } else if (binding.equals("Up")) {
196 if (value) { up = true; } else { up = false; }
218 if (up) { walkDirection.addLocal(camDir);
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridSerializationTest.java 119 private boolean up; field in class:TerrainGridSerializationTest
139 TerrainGridSerializationTest.this.up = true;
141 TerrainGridSerializationTest.this.up = false;
167 if (this.up) {
TerrainGridTest.java 179 private boolean up; field in class:TerrainGridTest
199 TerrainGridTest.this.up = true;
201 TerrainGridTest.this.up = false;
227 if (this.up) {
TerrainGridTileLoaderTest.java 176 private boolean up; field in class:TerrainGridTileLoaderTest
196 TerrainGridTileLoaderTest.this.up = true;
198 TerrainGridTileLoaderTest.this.up = false;
224 if (this.up) {
  /external/libpng/
pngwrite.c 108 png_unknown_chunk *up; local
112 for (up = info_ptr->unknown_chunks;
113 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
114 up++)
116 int keep = png_handle_as_unknown(png_ptr, up->name);
118 up->location && !(up->location & PNG_HAVE_PLTE) &&
119 !(up->location & PNG_HAVE_IDAT) &&
120 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
123 if (up->size == 0
286 png_unknown_chunk *up; local
390 png_unknown_chunk *up; local
    [all...]
  /external/libsepol/src/
hierarchy.c 56 * returns the indicated object. Otherwise, it looks up the
263 * We have to pull up them as unconditional ones in this case,
433 user_datum_t *u, *up; local
438 if (find_parent_user(a, u, &up) < 0)
441 if (up && !ebitmap_contains(&up->roles.roles, &u->roles.roles)) {
444 (char *) k, a->p->p_user_val_to_name[up->s.value - 1]);
  /external/libvpx/libvpx/vp8/common/
mfqe.c 144 unsigned char *up; local
233 for (up = u, udp = ud, i = 0; i < uvblksize; ++i, up += uv_stride, udp += uvd_stride)
234 vpx_memcpy(udp, up, uvblksize);
293 /* Set up the buffer pointers */
335 unsigned char *up = u_ptr + 4*(i*show->uv_stride+j); local
341 for (k = 0; k < 4; ++k, up += show->uv_stride, udp += dest->uv_stride,
344 vpx_memcpy(udp, up, 4);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 130 DataArray(BuildUtil *bld) : up(bld) { }
149 BuildUtil *up; member in class:nv50_ir::BuildUtil::DataArray

Completed in 726 milliseconds

1 23 4 5 6 7 8 9