Home
last modified time | relevance | path

Searched refs:w (Results 1 – 25 of 3305) sorted by relevance

12345678910>>...133

/external/bluetooth/bluedroid/stack/smp/
Daes.c92 #define sb_data(w) { /* S Box data values */ \ argument
93 w(0x63), w(0x7c), w(0x77), w(0x7b), w(0xf2), w(0x6b), w(0x6f), w(0xc5),\
94 w(0x30), w(0x01), w(0x67), w(0x2b), w(0xfe), w(0xd7), w(0xab), w(0x76),\
95 w(0xca), w(0x82), w(0xc9), w(0x7d), w(0xfa), w(0x59), w(0x47), w(0xf0),\
96 w(0xad), w(0xd4), w(0xa2), w(0xaf), w(0x9c), w(0xa4), w(0x72), w(0xc0),\
97 w(0xb7), w(0xfd), w(0x93), w(0x26), w(0x36), w(0x3f), w(0xf7), w(0xcc),\
98 w(0x34), w(0xa5), w(0xe5), w(0xf1), w(0x71), w(0xd8), w(0x31), w(0x15),\
99 w(0x04), w(0xc7), w(0x23), w(0xc3), w(0x18), w(0x96), w(0x05), w(0x9a),\
100 w(0x07), w(0x12), w(0x80), w(0xe2), w(0xeb), w(0x27), w(0xb2), w(0x75),\
101 w(0x09), w(0x83), w(0x2c), w(0x1a), w(0x1b), w(0x6e), w(0x5a), w(0xa0),\
[all …]
/external/valgrind/main/VEX/priv/
Dguest_generic_bb_to_IR.c781 static inline UInt ROL32 ( UInt w, Int n ) { in ROL32() argument
782 w = (w << n) | (w >> (32-n)); in ROL32()
783 return w; in ROL32()
793 UInt w; in genericg_compute_checksum_4al() local
794 w = p[0]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al()
795 w = p[1]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al()
796 w = p[2]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al()
797 w = p[3]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al()
803 UInt w; in genericg_compute_checksum_4al() local
804 w = p[0]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al()
[all …]
/external/libvpx/libvpx/vp9/common/x86/
Dvp9_asm_stubs.c66 int w, int h) { in vp9_convolve8_horiz_ssse3() argument
69 while (w >= 16) { in vp9_convolve8_horiz_ssse3()
75 w -= 16; in vp9_convolve8_horiz_ssse3()
77 while (w >= 8) { in vp9_convolve8_horiz_ssse3()
83 w -= 8; in vp9_convolve8_horiz_ssse3()
85 while (w >= 4) { in vp9_convolve8_horiz_ssse3()
91 w -= 4; in vp9_convolve8_horiz_ssse3()
94 if (w) { in vp9_convolve8_horiz_ssse3()
97 w, h); in vp9_convolve8_horiz_ssse3()
105 int w, int h) { in vp9_convolve8_vert_ssse3() argument
[all …]
/external/qemu/slirp/
Dcksum.c49 register u_int16_t *w; in cksum() local
65 w = mtod(m, u_int16_t *); in cksum()
75 if ((1 & (long) w) && (mlen > 0)) { in cksum()
78 s_util.c[0] = *(u_int8_t *)w; in cksum()
79 w = (u_int16_t *)((int8_t *)w + 1); in cksum()
88 sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3]; in cksum()
89 sum += w[4]; sum += w[5]; sum += w[6]; sum += w[7]; in cksum()
90 sum += w[8]; sum += w[9]; sum += w[10]; sum += w[11]; in cksum()
91 sum += w[12]; sum += w[13]; sum += w[14]; sum += w[15]; in cksum()
92 w += 16; in cksum()
[all …]
/external/qemu/slirp-android/
Dcksum.c49 register u_int16_t *w; in cksum() local
65 w = mtod(m, u_int16_t *); in cksum()
75 if ((1 & (long) w) && (mlen > 0)) { in cksum()
78 s_util.c[0] = *(u_int8_t *)w; in cksum()
79 w = (u_int16_t *)((int8_t *)w + 1); in cksum()
88 sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3]; in cksum()
89 sum += w[4]; sum += w[5]; sum += w[6]; sum += w[7]; in cksum()
90 sum += w[8]; sum += w[9]; sum += w[10]; sum += w[11]; in cksum()
91 sum += w[12]; sum += w[13]; sum += w[14]; sum += w[15]; in cksum()
92 w += 16; in cksum()
[all …]
/external/chromium_org/third_party/sqlite/src/contrib/
Dsqlitecon.tcl39 proc sqlitecon::create {w prompt title db} {
41 if {[winfo exists $w]} {destroy $w}
43 toplevel $w
44 wm title $w $title
45 wm iconname $w $title
52 $m add command -label {Close} -command "destroy $w"
53 sqlitecon::create_child $w $prompt $w.mb.edit.m
62 proc sqlitecon::create_child {w prompt editmenu} {
66 $m add command -label Cut -command "sqlitecon::Cut $w.t"
67 $m add command -label Copy -command "sqlitecon::Copy $w.t"
[all …]
/external/llvm/test/Transforms/LoopDeletion/
Dsimplify-then-delete.ll17 br i1 %cmp4, label %bb.n10, label %w.e12
19 w.c:
21 br i1 %cmp, label %w.c2.p, label %w.c.w.e12c
23 w.c.w.e12c:
24 br label %w.c.w.e12c.s
26 w.c.w.e12c.s:
27 br label %w.e12
31 br i1 %cmp51, label %bb.n10.w.c.w.e12c.sc, label %bb.n10.bb.n10.sc
36 bb.n10.w.c.w.e12c.sc:
37 br label %w.c.w.e12c.s
[all …]
/external/openssl/crypto/bn/
Dbn_word.c63 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) in BN_mod_word() argument
72 if (w == 0) in BN_mod_word()
76 w&=BN_MASK2; in BN_mod_word()
80 ret=((ret<<BN_BITS4)|((a->d[i]>>BN_BITS4)&BN_MASK2l))%w; in BN_mod_word()
81 ret=((ret<<BN_BITS4)|(a->d[i]&BN_MASK2l))%w; in BN_mod_word()
84 (BN_ULLONG)w); in BN_mod_word()
90 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w) in BN_div_word() argument
96 w &= BN_MASK2; in BN_div_word()
98 if (!w) in BN_div_word()
105 j = BN_BITS2 - BN_num_bits_word(w); in BN_div_word()
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
Dbn_word.c63 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) in BN_mod_word() argument
72 if (w == 0) in BN_mod_word()
76 w&=BN_MASK2; in BN_mod_word()
80 ret=((ret<<BN_BITS4)|((a->d[i]>>BN_BITS4)&BN_MASK2l))%w; in BN_mod_word()
81 ret=((ret<<BN_BITS4)|(a->d[i]&BN_MASK2l))%w; in BN_mod_word()
84 (BN_ULLONG)w); in BN_mod_word()
90 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w) in BN_div_word() argument
96 w &= BN_MASK2; in BN_div_word()
98 if (!w) in BN_div_word()
105 j = BN_BITS2 - BN_num_bits_word(w); in BN_div_word()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DVector4f.java89 public float w; field in Vector4f
97 x = y = z = w = 0; in Vector4f()
113 public Vector4f(float x, float y, float z, float w) { in Vector4f() argument
117 this.w = w; in Vector4f()
143 public Vector4f set(float x, float y, float z, float w) { in set() argument
147 this.w = w; in set()
163 this.w = vect.w; in set()
182 return new Vector4f(x + vec.x, y + vec.y, z + vec.z, w + vec.w); in add()
200 result.w = w + vec.w; in add()
221 w += vec.w; in addLocal()
[all …]
/external/valgrind/main/none/tests/amd64/
Dlzcnt64.c60 ULong w; in main() local
62 w = 0xFEDC192837475675ULL; in main()
66 do_lzcnt64(&flags, &res, w); in main()
67 printf("lzcntq %016llx -> %016llx %04x\n", w, res, flags); in main()
68 if (w == 0) break; in main()
69 w = ((w >> 2) | (w >> 1)) + (w / 17ULL); in main()
72 w = 0xFEDC192837475675ULL; in main()
76 do_lzcnt32(&flags, &res, w); in main()
77 printf("lzcntl %016llx -> %016llx %04x\n", w, res, flags); in main()
78 if (w == 0) break; in main()
[all …]
/external/chromium_org/v8/src/
Dgdb-jit.cc79 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { } in Slot() argument
343 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument
344 uintptr_t start = w->position(); in WriteBody()
345 if (WriteBodyInternal(w)) { in WriteBody()
346 uintptr_t end = w->position(); in WriteBody()
352 virtual bool WriteBodyInternal(Writer* w) { in WriteBodyInternal() argument
455 void AttachWriter(Writer* w) { in AttachWriter() argument
456 writer_ = w; in AttachWriter()
467 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument
510 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { in Write() argument
[all …]
/external/v8/src/
Dgdb-jit.cc77 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { } in Slot() argument
341 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument
342 uintptr_t start = w->position(); in WriteBody()
343 if (WriteBody(w)) { in WriteBody()
344 uintptr_t end = w->position(); in WriteBody()
350 virtual bool WriteBody(Writer* w) { in WriteBody() argument
453 void AttachWriter(Writer* w) { in AttachWriter() argument
454 writer_ = w; in AttachWriter()
465 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument
508 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { in Write() argument
[all …]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
DSHA1.java20 private final int[] w = new int[80]; field in SHA1
63w[idx] = (((b[off++] & 0xff) << 24) | ((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) << 8) | (b[of… in update()
74w[idx] = (w[idx] << 24) | (((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) << 8) | (b[off++] & 0xff… in update()
85 w[idx] = (w[idx] << 16) | (((b[off++] & 0xff) << 8) | (b[off++] & 0xff)); in update()
96 w[idx] = (w[idx] << 8) | (b[off++] & 0xff); in update()
112w[currentPos >> 2] = ((b[off++] & 0xff) << 24) | ((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) <<… in update()
122w[currentPos >> 2] = ((b[off++] & 0xff) << 24) | ((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) <<… in update()
139w[currentPos >> 2] = ((b[off++] & 0xff) << 24) | ((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) <<… in update()
158 w[idx] = (w[idx] << 8) | (b[off++] & 0xff); in update()
175 w[idx] = (w[idx] << 8) | (b & 0xff); in update()
[all …]
/external/skia/src/animator/
DSkXMLAnimatorWriter.cpp53 SkXMLAnimatorWriter w(&s); in UnitTest() local
54 w.startElement("screenplay"); in UnitTest()
55 w.startElement("animateField"); in UnitTest()
56 w.addAttribute("field", "x1"); in UnitTest()
57 w.addAttribute("id", "to100"); in UnitTest()
58 w.addAttribute("from", "0"); in UnitTest()
59 w.addAttribute("to", "100"); in UnitTest()
60 w.addAttribute("dur", "1"); in UnitTest()
61 w.endElement(); in UnitTest()
62 w.startElement("event"); in UnitTest()
[all …]
/external/chromium_org/third_party/skia/src/animator/
DSkXMLAnimatorWriter.cpp53 SkXMLAnimatorWriter w(&s); in UnitTest() local
54 w.startElement("screenplay"); in UnitTest()
55 w.startElement("animateField"); in UnitTest()
56 w.addAttribute("field", "x1"); in UnitTest()
57 w.addAttribute("id", "to100"); in UnitTest()
58 w.addAttribute("from", "0"); in UnitTest()
59 w.addAttribute("to", "100"); in UnitTest()
60 w.addAttribute("dur", "1"); in UnitTest()
61 w.endElement(); in UnitTest()
62 w.startElement("event"); in UnitTest()
[all …]
/external/llvm/test/MC/ARM/
Dthumb-shift-encoding.s7 sbc.w r12, lr, r0
8 sbc.w r1, r8, r9, lsr #32
9 sbc.w r2, r7, pc, lsr #16
10 sbc.w r3, r6, r10, lsl #0
11 sbc.w r4, r5, lr, lsl #16
12 sbc.w r5, r4, r11, asr #32
13 sbc.w r6, r3, sp, asr #16
14 sbc.w r7, r2, r12, rrx
15 sbc.w r8, r1, r0, ror #16
17 @ CHECK: sbc.w r12, lr, r0 @ encoding: [0x6e,0xeb,0x00,0x0c]
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_tile.c50 uint x, uint y, uint w, uint h, in pipe_get_tile_raw() argument
56 dst_stride = util_format_get_stride(pt->resource->format, w); in pipe_get_tile_raw()
58 if (u_clip_tile(x, y, &w, &h, &pt->box)) in pipe_get_tile_raw()
66 util_copy_rect(dst, pt->resource->format, dst_stride, 0, 0, w, h, src, pt->stride, x, y); in pipe_get_tile_raw()
78 uint x, uint y, uint w, uint h, in pipe_put_tile_raw() argument
85 src_stride = util_format_get_stride(format, w); in pipe_put_tile_raw()
87 if (u_clip_tile(x, y, &w, &h, &pt->box)) in pipe_put_tile_raw()
95 util_copy_rect(dst, format, pt->stride, x, y, w, h, src, src_stride, 0, 0); in pipe_put_tile_raw()
118 unsigned w, unsigned h, in z16_get_tile_rgba() argument
127 for (j = 0; j < w; j++, pRow += 4) { in z16_get_tile_rgba()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_tile.c50 uint x, uint y, uint w, uint h, in pipe_get_tile_raw() argument
56 dst_stride = util_format_get_stride(pt->resource->format, w); in pipe_get_tile_raw()
58 if (u_clip_tile(x, y, &w, &h, &pt->box)) in pipe_get_tile_raw()
66 util_copy_rect(dst, pt->resource->format, dst_stride, 0, 0, w, h, src, pt->stride, x, y); in pipe_get_tile_raw()
78 uint x, uint y, uint w, uint h, in pipe_put_tile_raw() argument
85 src_stride = util_format_get_stride(format, w); in pipe_put_tile_raw()
87 if (u_clip_tile(x, y, &w, &h, &pt->box)) in pipe_put_tile_raw()
95 util_copy_rect(dst, format, pt->stride, x, y, w, h, src, src_stride, 0, 0); in pipe_put_tile_raw()
118 unsigned w, unsigned h, in z16_get_tile_rgba() argument
127 for (j = 0; j < w; j++, pRow += 4) { in z16_get_tile_rgba()
[all …]
/external/qemu/android/
Dconfig.c359 writer_init( Writer* w, const char* fn ) in writer_init() argument
361 w->p = w->buff; in writer_init()
362 w->end = w->buff + sizeof(w->buff); in writer_init()
364 w->fd = creat( fn, 0755 ); in writer_init()
365 if (w->fd < 0) in writer_init()
369 _setmode( w->fd, _O_BINARY ); in writer_init()
375 writer_write( Writer* w, const char* src, int len ) in writer_write() argument
378 int avail = w->end - w->p; in writer_write()
383 memcpy( w->p, src, avail ); in writer_write()
387 w->p += avail; in writer_write()
[all …]
/external/chromium_org/ui/gfx/codec/
Dpng_codec_unittest.cc23 void MakeRGBImage(int w, int h, std::vector<unsigned char>* data) { in MakeRGBImage() argument
24 data->resize(w * h * 3); in MakeRGBImage()
26 for (int x = 0; x < w; x++) { in MakeRGBImage()
27 unsigned char* org_px = &(*data)[(y * w + x) * 3]; in MakeRGBImage()
39 void MakeRGBAImage(int w, int h, bool use_transparency, in MakeRGBAImage() argument
41 data->resize(w * h * 4); in MakeRGBAImage()
43 for (int x = 0; x < w; x++) { in MakeRGBAImage()
44 unsigned char* org_px = &(*data)[(y * w + x) * 4]; in MakeRGBAImage()
57 void MakePaletteImage(int w, int h, in MakePaletteImage() argument
61 data->resize(w * h); in MakePaletteImage()
[all …]
/external/openssh/openbsd-compat/
Dbsd-waitpid.h38 #define _W_INT(w) (*(int*)&(w)) /* convert union wait to int */ argument
39 #define WIFEXITED(w) (!((_W_INT(w)) & 0377)) argument
40 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100) argument
41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w)) argument
42 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1) argument
43 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1) argument
45 #define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG) argument
/external/eigen/test/
Dqtvector.cpp26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y); in check_qtvector_matrix() local
29 VERIFY_IS_APPROX(w[i], y); in check_qtvector_matrix()
32 w[6] = v[5]; in check_qtvector_matrix()
33 VERIFY_IS_APPROX(w[6], v[5]); in check_qtvector_matrix()
34 v = w; in check_qtvector_matrix()
37 VERIFY_IS_APPROX(w[i], v[i]); in check_qtvector_matrix()
51 MatrixType* ref = &w[0]; in check_qtvector_matrix()
52 for(int i=0; i<30 || ((ref==&w[0]) && i<300); ++i) in check_qtvector_matrix()
53 v.push_back(w[i%w.size()]); in check_qtvector_matrix()
56 VERIFY(v[i]==w[(i-23)%w.size()]); in check_qtvector_matrix()
[all …]
/external/eigen/test/eigen2/
Deigen2_qtvector.cpp26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y); in check_qtvector_matrix() local
29 VERIFY_IS_APPROX(w[i], y); in check_qtvector_matrix()
32 w[6] = v[5]; in check_qtvector_matrix()
33 VERIFY_IS_APPROX(w[6], v[5]); in check_qtvector_matrix()
34 v = w; in check_qtvector_matrix()
37 VERIFY_IS_APPROX(w[i], v[i]); in check_qtvector_matrix()
51 MatrixType* ref = &w[0]; in check_qtvector_matrix()
52 for(int i=0; i<30 || ((ref==&w[0]) && i<300); ++i) in check_qtvector_matrix()
53 v.push_back(w[i%w.size()]); in check_qtvector_matrix()
56 VERIFY(v[i]==w[(i-23)%w.size()]); in check_qtvector_matrix()
[all …]
/external/fdlibm/
Dk_tan.c75 double z, r, v, w, s; in __kernel_tan() local
90 z = w = x + y; in __kernel_tan()
93 t = a = -one / w; in __kernel_tan()
107 w = pio4lo - y; in __kernel_tan()
108 x = z + w; in __kernel_tan()
112 w = z * z; in __kernel_tan()
118 r = T[1] + w * (T[3] + w * (T[5] + w * (T[7] + w * (T[9] + in __kernel_tan()
119 w * T[11])))); in __kernel_tan()
120 v = z * (T[2] + w * (T[4] + w * (T[6] + w * (T[8] + w * (T[10] + in __kernel_tan()
121 w * T[12]))))); in __kernel_tan()
[all …]

12345678910>>...133