Home
last modified time | relevance | path

Searched refs:v (Results 1 – 25 of 989) sorted by relevance

12345678910>>...40

/external/webkit/JavaScriptCore/runtime/
DJSNumberCell.h111 inline bool isNumberCell(JSValuePtr v) in isNumberCell() argument
113 return v.isCell() && v.asCell()->isNumber(); in isNumberCell()
116 inline JSNumberCell* asNumberCell(JSValuePtr v) in asNumberCell() argument
118 ASSERT(isNumberCell(v)); in asNumberCell()
119 return static_cast<JSNumberCell*>(v.asCell()); in asNumberCell()
124 JSValuePtr v = JSImmediate::from(d); in jsNumber() local
125 return v ? v : jsNumberCell(exec, d); in jsNumber()
130 JSValuePtr v = JSImmediate::from(i); in jsNumber() local
131 return v ? v : jsNumberCell(exec, i); in jsNumber()
136 JSValuePtr v = JSImmediate::from(i); in jsNumber() local
[all …]
DJSImmediate.cpp35 JSObject* JSImmediate::toThisObject(JSValuePtr v, ExecState* exec) in toThisObject() argument
37 ASSERT(isImmediate(v)); in toThisObject()
38 if (isNumber(v)) in toThisObject()
39 return constructNumber(exec, v); in toThisObject()
40 if (isBoolean(v)) in toThisObject()
41 return constructBooleanFromImmediateBoolean(exec, v); in toThisObject()
42 if (v.isNull()) in toThisObject()
45 JSNotAnObjectErrorStub* exception = createNotAnObjectErrorStub(exec, v.isNull()); in toThisObject()
50 JSObject* JSImmediate::toObject(JSValuePtr v, ExecState* exec) in toObject() argument
52 ASSERT(isImmediate(v)); in toObject()
[all …]
DJSImmediate.h222 static ALWAYS_INLINE bool isImmediate(JSValuePtr v) in isImmediate() argument
224 return rawValue(v) & TagMask; in isImmediate()
227 static ALWAYS_INLINE bool isNumber(JSValuePtr v) in isNumber() argument
229 return rawValue(v) & TagTypeNumber; in isNumber()
232 static ALWAYS_INLINE bool isIntegerNumber(JSValuePtr v) in isIntegerNumber() argument
235 return (rawValue(v) & TagTypeNumber) == TagTypeNumber; in isIntegerNumber()
237 return isNumber(v); in isIntegerNumber()
242 static ALWAYS_INLINE bool isDoubleNumber(JSValuePtr v) in isDoubleNumber() argument
244 return isNumber(v) && !isIntegerNumber(v); in isDoubleNumber()
248 static ALWAYS_INLINE bool isPositiveIntegerNumber(JSValuePtr v) in isPositiveIntegerNumber() argument
[all …]
/external/tremor/Tremor/
Ddsp.c26 int vorbis_dsp_restart(vorbis_dsp_state *v){ in vorbis_dsp_restart() argument
27 if(!v)return -1; in vorbis_dsp_restart()
29 vorbis_info *vi=v->vi; in vorbis_dsp_restart()
36 v->out_end=-1; in vorbis_dsp_restart()
37 v->out_begin=-1; in vorbis_dsp_restart()
39 v->granulepos=-1; in vorbis_dsp_restart()
40 v->sequence=-1; in vorbis_dsp_restart()
41 v->sample_count=-1; in vorbis_dsp_restart()
49 vorbis_dsp_state *v=_ogg_calloc(1,sizeof(*v)); in vorbis_dsp_create() local
52 v->vi=vi; in vorbis_dsp_create()
[all …]
/external/freetype/src/base/
Dfttrigon.c49 FT_Int64 v; in ft_trig_downscale() local
55 v = ( val * (FT_Int64)FT_TRIG_SCALE ) + 0x100000000UL; in ft_trig_downscale()
56 val = (FT_Fixed)( v >> 32 ); in ft_trig_downscale()
335 FT_Vector v; in FT_Cos() local
338 v.x = FT_TRIG_COSCALE >> 2; in FT_Cos()
339 v.y = 0; in FT_Cos()
340 ft_trig_pseudo_rotate( &v, angle ); in FT_Cos()
342 return v.x / ( 1 << 12 ); in FT_Cos()
360 FT_Vector v; in FT_Tan() local
363 v.x = FT_TRIG_COSCALE >> 2; in FT_Tan()
[all …]
/external/qemu/
Dcpu-all.h219 static inline void stb_p(void *ptr, int v) in stb_p() argument
221 *(uint8_t *)ptr = v; in stb_p()
275 static inline void stw_le_p(void *ptr, int v) in stw_le_p() argument
278 __asm__ __volatile__ ("sthbrx %1,0,%2" : "=m" (*(uint16_t *)ptr) : "r" (v), "r" (ptr)); in stw_le_p()
281 p[0] = v; in stw_le_p()
282 p[1] = v >> 8; in stw_le_p()
286 static inline void stl_le_p(void *ptr, int v) in stl_le_p() argument
289 __asm__ __volatile__ ("stwbrx %1,0,%2" : "=m" (*(uint32_t *)ptr) : "r" (v), "r" (ptr)); in stl_le_p()
292 p[0] = v; in stl_le_p()
293 p[1] = v >> 8; in stl_le_p()
[all …]
Dbswap.h77 #define be_bswap(v, size) (v) argument
78 #define le_bswap(v, size) bswap ## size(v) argument
79 #define be_bswaps(v, size) argument
82 #define le_bswap(v, size) (v) argument
83 #define be_bswap(v, size) bswap ## size(v) argument
84 #define le_bswaps(v, size) argument
89 static inline type endian ## size ## _to_cpu(type v)\
91 return endian ## _bswap(v, size);\
94 static inline type cpu_to_ ## endian ## size(type v)\
96 return endian ## _bswap(v, size);\
[all …]
/external/openssl/crypto/conf/
Dkeysets.pl19 $v=0;
21 $v|=$NUMBER if ($c =~ /[0-9]/);
22 $v|=$UPPER if ($c =~ /[A-Z]/);
23 $v|=$LOWER if ($c =~ /[a-z]/);
24 $v|=$UNDER if ($c =~ /_/);
25 $v|=$PUNCTUATION if ($c =~ /[!\.%&\*\+,\/;\?\@\^\~\|-]/);
26 $v|=$WS if ($c =~ /[ \t\r\n]/);
27 $v|=$ESC if ($c =~ /\\/);
28 $v|=$QUOTE if ($c =~ /['`"]/); # for emacs: "`'}/)
29 $v|=$COMMENT if ($c =~ /\#/);
[all …]
Dconf_api.c86 CONF_VALUE *v,vv; in _CONF_get_section() local
91 v=(CONF_VALUE *)lh_retrieve(conf->data,&vv); in _CONF_get_section()
92 return(v); in _CONF_get_section()
99 CONF_VALUE *v; in STACK_OF() local
101 v=_CONF_get_section(conf,section); in STACK_OF()
102 if (v != NULL) in STACK_OF()
103 return((STACK_OF(CONF_VALUE) *)v->value); in STACK_OF()
110 CONF_VALUE *v = NULL; in _CONF_add_string() local
121 v = (CONF_VALUE *)lh_insert(conf->data, value); in _CONF_add_string()
122 if (v != NULL) in _CONF_add_string()
[all …]
/external/srec/config/en.us/audio/v139/
Dv139_024.nwv10v�z�|�{�v�u�y�y�{��{�w�x����|�������������~�����������������������������������������������������…
12 ���/�G�D�H�j���m�j�����v�w�d�M�M�@�(������������k�O�7�4�7�%�
15 �����������������������������������p�v����������������������2�����o���������-�4��qN�_…
19 �<���t��,v��%0n���)���x�;�P�u�c�Q���C���
23v�k����&  �H:��X�fKC�������r� �����z�b�J�?�C�=�H�z���������0�{��������3�/�-�T�…
25 ���J'��0���7�����������������l���d�v�������>]�������M��������|�m�����������������…
Dv139_254.nwv10vv�m�c�f�f�`�e�i�a�[�_�d�`�d�k�c�a�j�f�g�t�q�p�s�m�n�u�y�r�m�t�s�v�{�w�}�}�y�����{���������������…
12v�R�~�������B�K�������4��t�����~�O���������E�S�������?��g�����m�T���������.�<�����m���`�����a�…
15v�������l�2�l�����V��1�������R�Y�������M�(�a�����K��3�������I�Q�������J��\�����E��2������K�V�…
18v�b�d�E�#�.�@�B�K�.��������������������h�}���}�c��������������P�2��7�E�\�����[�����Y�w�o�`…
26 …����������O�#������x�u�c�%�����������������q�r�������������������$�;�@�U�v��������������������…
30 ����������� �'�8�,�;�]�:�0�i�x�S�+�D�~�U��+�i���v�N�Z���������|�������������������������`�C��� �…
31 ���D�&�%�����������`���g� �����$�W�|� �����v���f�t����������������u�a�x���R�������������������…
32 …~�1�������������������������"����C�5� �'������5�O�6�6�F�:�E�{���{�����z�v���������M�RI�…
Dv139_007.nwv10v�������������������������������������������������������������������������������������������������…
11v�{���|�}���������~�����������~�����������������������������������������������������������������…
15v�8���(�:�8���A�0�1�O�[�^�U�`�b�<�*� ��(�������������������������A�_�U�J�q���������������…
16 …Q�;�E�V�L�C�P�Q�H�G�6��2�6�����������������������M�U�r�e�_�~���������������v�������������o�f�����…
17 …j��������������������������!������������������������������������������|�w�v�X�I�;�$�3�&���"H+�…
18 …��5�V�z���������������������d�2������Z�M�|�������E'�����P�����3�"�{�������#�$�����v�<� �
19 …��#����u�U�������|�O�b��E�X�D�����f�����V�y������V�s�J�>�R�^�s������6�v���A�����������q���…
22 …���������� ���%��������������S�����[g��)��;c�jb����������v�����;���W���I�����\�…
23 …o�:�������m�l�}������U������)$����dS�����4�8�7�������r���u��v�3�%������������T�C�…
27 …w�V�J�?�M�1�����������t�����z�h�]�T�k������������������� ��%�9�H�N�I�I�P�\�v��������@�s����W�…
Dv139_248.nwv10v�n�k�i�l�q�j�k�u�u�r�p�o�u�y�v�{���~������z�����������������������������������������������������…
13v�������r�D��������������(�����|�������j�C�y�������Z�u�������g�W�������6� �I�����a�-�T�������4�5�…
14 �B�������%�]���f�-�����^�_�����c�������o�����v�����o�����t�������n�{�����\�����t�R�����c�V�����]�}�…
15 …��t�T�V�����@�@�����H�K�������t�T�����d�+�H�}���C�5�������������������������v�����������r�����P�]�…
18 …,�*��������������������������������{�_�m�����������-�m�x�L�M�X�F�9�-�3�@�v������{����x�Y�…
20v�{����K�T����o�,��#�2�a���x�X�A�-��3������(�4�������>�L�k���E�g�)D������W�<�z�c�����…
Dv139_040.nwv10v�w�t�m�x���{�t�v�z���}�{�~�u�x���x�x�~�������}���������������������������������������������������…
14v���u�����|�y�k�q�����������}���������������������������������������p�a�d�a�V�\�d�l�|�������������…
16 …��{���w�n�i�h�j�m�~�������������{�{�}�t�x�����s�o�w�����x�l�b�\�T�V�]�o����v��������o�l�{�������…
17 …�����%�A�[�o�x����������������������n�X�[�k�}�����������B������p��"4vD�B��n�n�������<�…
18 …[����M�U���x���\��J0�����|����������b���i���`�������a�Q�v�������'�n������k���…
19 …����'���n��������������+����y����)�����y������j������%���������0�v�����(���������…
25 …i��Ip������W�Q��[����C�����]�4����������������������$�<�Z�v�������!�b�������
30 …~����������7�@�T�B������p�����s�������m�����������������|�����l�7��������v�g�y�[�)�)���)�6�.�…
34 e����k�3!������t����4�%�v��� ���!�m�����z�=���Z�;����{�h����?���^��
36v��������.�?�D�� �B�'�1�E�D�8�$�5�4�$�(�?��SC }D@��+�fy���i�)� ���3�����E��3�…
Dv139_021.nwv10v�z����������������~�����������������������������������������������������������������������������…
11v���������������������������������������{�y�y�w�{�y�z�w�k�u��y�x�q�k�u�y�s�v�w�o�s�{�x�t�y�}�|�t�…
14 …_�5�:�C�,��%�!��*�%����)����7�=�W�d�^�����i�P�m�[�4�(�����������������{�v���������������������…
15 …�:�a���p�����t�����Q�_�m�@�O�i�_�y�|�i�������^�c��h�l�y�|��z�v�a�]�e�V�W�H���������p�v�E�#�.�…
18 …K�O�U�b�[�[�a�d�{�����������������������������������������������������������v�g�a�T�B�G�N�H�D�D�=�…
21 …(�C�O��C��@���Z�\���d����������N��������Y���������������r�������d�]�8�QR � #�v
25v����M�4�1�G�����,�r�����������������������O�~���������J��+�U���|��������P���9�…
27 …2�&�E�b�D�D�����C���}� ����2�������T�7�h�����X���t�D����� ���{�F�E�Y�v������#�)�)�5�>�M�t�…
29 {^��=�6�2���E������������_�����:�������r����a�:�^�����x�t�=����-����v�9�.�0�8�Q�M��…
/external/qemu/fpu/
Dsoftfloat-native.c76 float32 int32_to_float32(int v STATUS_PARAM) in int32_to_float32()
78 return (float32)v; in int32_to_float32()
81 float32 uint32_to_float32(unsigned int v STATUS_PARAM) in uint32_to_float32()
83 return (float32)v; in uint32_to_float32()
86 float64 int32_to_float64(int v STATUS_PARAM) in int32_to_float64()
88 return (float64)v; in int32_to_float64()
91 float64 uint32_to_float64(unsigned int v STATUS_PARAM) in uint32_to_float64()
93 return (float64)v; in uint32_to_float64()
97 floatx80 int32_to_floatx80(int v STATUS_PARAM) in int32_to_floatx80()
99 return (floatx80)v; in int32_to_floatx80()
[all …]
/external/webkit/SunSpider/tests/
Dstring-tagcloud.js44 v; // The value to be stringified.
47 v = this[i];
48 switch (typeof v) {
51 if (v && typeof v.toJSONString === 'function') {
52 a.push(v.toJSONString(w));
61 a.push(v.toJSONString());
103 v; // The current value.
109 v = this[k];
110 switch (typeof v) {
113 if (v) {
[all …]
/external/openssl/crypto/asn1/
Dt_x509.c332 int ASN1_STRING_print(BIO *bp, ASN1_STRING *v) in ASN1_STRING_print() argument
337 if (v == NULL) return(0); in ASN1_STRING_print()
339 p=(char *)v->data; in ASN1_STRING_print()
340 for (i=0; i<v->length; i++) in ASN1_STRING_print()
378 char *v; in ASN1_GENERALIZEDTIME_print() local
384 v=(char *)tm->data; in ASN1_GENERALIZEDTIME_print()
387 if (v[i-1] == 'Z') gmt=1; in ASN1_GENERALIZEDTIME_print()
389 if ((v[i] > '9') || (v[i] < '0')) goto err; in ASN1_GENERALIZEDTIME_print()
390 y= (v[0]-'0')*1000+(v[1]-'0')*100 + (v[2]-'0')*10+(v[3]-'0'); in ASN1_GENERALIZEDTIME_print()
391 M= (v[4]-'0')*10+(v[5]-'0'); in ASN1_GENERALIZEDTIME_print()
[all …]
/external/bluez/utils/sbc/
Dformats.h28 #define LE_SHORT(v) (v) argument
29 #define LE_INT(v) (v) argument
30 #define BE_SHORT(v) bswap_16(v) argument
31 #define BE_INT(v) bswap_32(v) argument
34 #define LE_SHORT(v) bswap_16(v) argument
35 #define LE_INT(v) bswap_32(v) argument
36 #define BE_SHORT(v) (v) argument
37 #define BE_INT(v) (v) argument
/external/qemu/hw/
Darmv7m.c29 uint8_t v; in bitband_readb() local
30 cpu_physical_memory_read(bitband_addr(offset), &v, 1); in bitband_readb()
31 return (v & (1 << ((offset >> 2) & 7))) != 0; in bitband_readb()
39 uint8_t v; in bitband_writeb() local
42 cpu_physical_memory_read(addr, &v, 1); in bitband_writeb()
44 v |= mask; in bitband_writeb()
46 v &= ~mask; in bitband_writeb()
47 cpu_physical_memory_write(addr, &v, 1); in bitband_writeb()
54 uint16_t v; in bitband_readw() local
58 cpu_physical_memory_read(addr, (uint8_t *)&v, 2); in bitband_readw()
[all …]
/external/webkit/WebCore/html/
DHTMLTokenizer.h66 void addAttribute(AtomicString& attrName, const AtomicString& v, bool viewSourceMode);
255 void setInScript(bool v) { setBit(InScript, v); } in setInScript() argument
257 void setInStyle(bool v) { setBit(InStyle, v); } in setInStyle() argument
259 void setInXmp(bool v) { setBit(InXmp, v); } in setInXmp() argument
261 void setInTitle(bool v) { setBit(InTitle, v); } in setInTitle() argument
263 void setInIFrame(bool v) { setBit(InIFrame, v); } in setInIFrame() argument
265 void setInPlainText(bool v) { setBit(InPlainText, v); } in setInPlainText() argument
267 void setInProcessingInstruction(bool v) { return setBit(InProcessingInstruction, v); } in setInProcessingInstruction() argument
269 void setInComment(bool v) { setBit(InComment, v); } in setInComment() argument
271 void setInDoctype(bool v) { setBit(InDoctype, v); } in setInDoctype() argument
[all …]
/external/dropbear/libtommath/
Dbn_mp_gcd.c21 mp_int u, v; in mp_gcd() local
37 if ((res = mp_init_copy (&v, b)) != MP_OKAY) { in mp_gcd()
42 u.sign = v.sign = MP_ZPOS; in mp_gcd()
46 v_lsb = mp_cnt_lsb(&v); in mp_gcd()
55 if ((res = mp_div_2d(&v, k, &v, NULL)) != MP_OKAY) { in mp_gcd()
68 if ((res = mp_div_2d(&v, v_lsb - k, &v, NULL)) != MP_OKAY) { in mp_gcd()
73 while (mp_iszero(&v) == 0) { in mp_gcd()
75 if (mp_cmp_mag(&u, &v) == MP_GT) { in mp_gcd()
77 mp_exch(&u, &v); in mp_gcd()
81 if ((res = s_mp_sub(&v, &u, &v)) != MP_OKAY) { in mp_gcd()
[all …]
/external/webkit/JavaScriptCore/tests/mozilla/js1_6/Array/
Dregress-290592.js49 function identity(v, index, array) argument
51 reportCompare(v, array[index], 'identity: check callback argument consistency');
52 return v;
55 function mutate(v, index, array) argument
57 reportCompare(v, array[index], 'mutate: check callback argument consistency');
64 return v;
67 function mutateForEach(v, index, array) argument
69 reportCompare(v, array[index], 'mutateForEach: check callback argument consistency');
76 actual += v + ',';
79 function makeUpperCase(v, index, array) argument
[all …]
/external/webkit/WebCore/rendering/style/
DRenderStyle.h660 void setDisplay(EDisplay v) { noninherited_flags._effectiveDisplay = v; } in setDisplay() argument
661 void setOriginalDisplay(EDisplay v) { noninherited_flags._originalDisplay = v; } in setOriginalDisplay() argument
662 void setPosition(EPosition v) { noninherited_flags._position = v; } in setPosition() argument
663 void setFloating(EFloat v) { noninherited_flags._floating = v; } in setFloating() argument
665 void setLeft(Length v) { SET_VAR(surround, offset.m_left, v) } in setLeft() argument
666 void setRight(Length v) { SET_VAR(surround, offset.m_right, v) } in setRight() argument
667 void setTop(Length v) { SET_VAR(surround, offset.m_top, v) } in setTop() argument
668 void setBottom(Length v) { SET_VAR(surround, offset.m_bottom, v) } in setBottom() argument
670 void setWidth(Length v) { SET_VAR(box, width, v) } in setWidth() argument
671 void setHeight(Length v) { SET_VAR(box, height, v) } in setHeight() argument
[all …]
/external/openssl/crypto/objects/
Dobj_dat.pl25 local(*v)=@_;
31 foreach $k (keys %v)
33 if (($v{$k} =~ s/(OBJ_[^,]+),/$v{$1},/))
37 foreach $k (keys %v)
39 @a=split(/,/,$v{$k});
51 $v=$1;
55 if ($v =~ /^SN_(.*)$/)
65 elsif ($v =~ /^LN_(.*)$/)
75 elsif ($v =~ /^NID_(.*)$/)
77 elsif ($v =~ /^OBJ_(.*)$/)
[all …]

12345678910>>...40