HomeSort by relevance Sort by last modified time
    Searched full:wide (Results 26 - 50 of 5336) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
wctype.h 21 * Wide character classification and mapping utilities <wctype.h>
107 * Wide-character classification functions: 7.15.2.1.
110 /* Test for any wide character for which `iswalpha' or `iswdigit' is
114 /* Test for any wide character for which `iswupper' or 'iswlower' is
115 true, or any wide character that is one of a locale-specific set of
116 wide-characters for which none of `iswcntrl', `iswdigit',
120 /* Test for any control wide character. */
123 /* Test for any wide character that corresponds to a decimal-digit
127 /* Test for any wide character for which `iswprint' is true and
131 /* Test for any wide character that corresponds to a lowercase lette
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
wctype.h 21 * Wide character classification and mapping utilities <wctype.h>
107 * Wide-character classification functions: 7.15.2.1.
110 /* Test for any wide character for which `iswalpha' or `iswdigit' is
114 /* Test for any wide character for which `iswupper' or 'iswlower' is
115 true, or any wide character that is one of a locale-specific set of
116 wide-characters for which none of `iswcntrl', `iswdigit',
120 /* Test for any control wide character. */
123 /* Test for any wide character that corresponds to a decimal-digit
127 /* Test for any wide character for which `iswprint' is true and
131 /* Test for any wide character that corresponds to a lowercase lette
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
wctype.h 21 * Wide character classification and mapping utilities <wctype.h>
107 * Wide-character classification functions: 7.15.2.1.
110 /* Test for any wide character for which `iswalpha' or `iswdigit' is
114 /* Test for any wide character for which `iswupper' or 'iswlower' is
115 true, or any wide character that is one of a locale-specific set of
116 wide-characters for which none of `iswcntrl', `iswdigit',
120 /* Test for any control wide character. */
123 /* Test for any wide character that corresponds to a decimal-digit
127 /* Test for any wide character for which `iswprint' is true and
131 /* Test for any wide character that corresponds to a lowercase lette
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/tests/
StringOperators.cpp 153 EXPECT_N_WTF_STRING_COPIES(1, L"wide string" + string);
154 EXPECT_N_WTF_STRING_COPIES(1, string + L"wide string");
155 EXPECT_N_WTF_STRING_COPIES(1, L"wide string" + atomicString);
156 EXPECT_N_WTF_STRING_COPIES(1, atomicString + L"wide string");
158 EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + string + L"wide string" + string);
159 EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + (string + L"wide string" + string));
160 EXPECT_N_WTF_STRING_COPIES(2, (L"wide string" + string) + (L"wide string" + string))
    [all...]
  /external/chromium/base/
sys_string_conversions_win.cc 14 std::string SysWideToUTF8(const std::wstring& wide) {
15 return SysWideToMultiByte(wide, CP_UTF8);
23 std::string SysWideToNativeMB(const std::wstring& wide) {
24 return SysWideToMultiByte(wide, CP_ACP);
43 std::wstring wide;
44 wide.resize(charcount);
45 MultiByteToWideChar(code_page, 0, mb.data(), mb_length, &wide[0], charcount);
47 return wide;
51 std::string SysWideToMultiByte(const std::wstring& wide, uint32 code_page) {
52 int wide_length = static_cast<int>(wide.length())
    [all...]
  /external/chromium_org/base/strings/
sys_string_conversions_win.cc 14 std::string SysWideToUTF8(const std::wstring& wide) {
15 return SysWideToMultiByte(wide, CP_UTF8);
23 std::string SysWideToNativeMB(const std::wstring& wide) {
24 return SysWideToMultiByte(wide, CP_ACP);
43 std::wstring wide;
44 wide.resize(charcount);
45 MultiByteToWideChar(code_page, 0, mb.data(), mb_length, &wide[0], charcount);
47 return wide;
51 std::string SysWideToMultiByte(const std::wstring& wide, uint32 code_page) {
52 int wide_length = static_cast<int>(wide.length())
    [all...]
  /external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format51l/
Format51l.smali 11 .method public test_const-wide()V
16 const-wide v0, 6
18 const-wide/16 v2, 6
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_wide_point.c 32 * Notes on wide points and sprite mode:
34 * In wide point/sprite mode we effectively need to convert each incoming
94 static void set_texcoords(const struct widepoint_stage *wide,
97 const struct draw_context *draw = wide->stage.draw;
102 for (i = 0; i < wide->num_texcoord_gen; i++) {
103 const uint slot = wide->texcoord_gen_slot[i];
123 const struct widepoint_stage *wide = widepoint_stage(stage); local
143 if (wide->psize_slot >= 0) {
144 half_size = header->v[0]->data[wide->psize_slot][0];
148 half_size = wide->half_point_size
196 struct widepoint_stage *wide = widepoint_stage(stage); local
312 struct widepoint_stage *wide = CALLOC_STRUCT(widepoint_stage); local
    [all...]
draw_pipe_wide_line.c 56 * Draw a wide line by drawing a quad (two triangles).
61 /*const struct wideline_stage *wide = wideline_stage(stage);*/
87 * Draw wide line as a quad (two tris) by "stretching" the line along
204 struct wideline_stage *wide = CALLOC_STRUCT(wideline_stage); local
205 if (wide == NULL)
208 wide->stage.draw = draw;
209 wide->stage.name = "wide-line";
210 wide->stage.next = NULL;
211 wide->stage.point = draw_pipe_passthrough_point
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_wide_point.c 32 * Notes on wide points and sprite mode:
34 * In wide point/sprite mode we effectively need to convert each incoming
94 static void set_texcoords(const struct widepoint_stage *wide,
97 const struct draw_context *draw = wide->stage.draw;
102 for (i = 0; i < wide->num_texcoord_gen; i++) {
103 const uint slot = wide->texcoord_gen_slot[i];
123 const struct widepoint_stage *wide = widepoint_stage(stage); local
143 if (wide->psize_slot >= 0) {
144 half_size = header->v[0]->data[wide->psize_slot][0];
148 half_size = wide->half_point_size
196 struct widepoint_stage *wide = widepoint_stage(stage); local
312 struct widepoint_stage *wide = CALLOC_STRUCT(widepoint_stage); local
    [all...]
  /dalvik/dx/tests/102-verify-nonwide-math/
info.txt 1 This tests that non-wide-taking (category-1) "calculation" opcodes (math
  /dalvik/vm/mterp/c/
OP_CONST_WIDE_16.cpp 4 ILOGV("|const-wide/16 v%d,#0x%04x", vdst, (s2)vsrc1);
OP_CONST_WIDE_HIGH16.cpp 4 ILOGV("|const-wide/high16 v%d,#0x%04x000000000000", vdst, vsrc1);
OP_MOVE_RESULT_WIDE.cpp 3 ILOGV("|move-result-wide v%d %s(0x%08llx)", vdst, kSpacing, retval.j);
  /external/chromium_org/chrome/installer/linux/common/
variables.include 1 # System-wide package configuration.
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
wide_document.html 1 <body style="margin:0px; padding:0px"><div style="width:1500px; background-color:red">Wide div forcing page to widen</div></body>
  /external/llvm/test/CodeGen/ARM/
neon_cmp.ll 6 %wide.load = load <2 x double>* %a, align 4
7 %wide.load2 = load <2 x double>* %b, align 4
10 %v1 = fcmp olt <2 x double> %wide.load, %wide.load2
  /ndk/sources/host-tools/sed-4.2.1/
README-alpha 1 This is an alpha version of GNU sed. Please try it on a wide
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_wide/d/
T_iget_wide_1.d 29 const-wide v0, 12345679890123
30 iput-wide v0, v2, dot.junit.opcodes.iget_wide.d.T_iget_wide_1.i1 J
32 const-wide v0, 10
33 iput-wide v0, v2, dot.junit.opcodes.iget_wide.d.T_iget_wide_1.p1 J
35 const-wide v0, 20
36 iput-wide v0, v2, dot.junit.opcodes.iget_wide.d.T_iget_wide_1.pvt1 J
44 iget-wide v1, v2, dot.junit.opcodes.iget_wide.d.T_iget_wide_1.i1 J
45 return-wide v1
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget_wide/d/
T_sget_wide_1.d 25 const-wide v0, 12345679890123
26 sput-wide v0, dot.junit.opcodes.sget_wide.d.T_sget_wide_1.i1 J
28 const-wide v0, 10
29 sput-wide v0, dot.junit.opcodes.sget_wide.d.T_sget_wide_1.p1 J
31 const-wide v0, 20
32 sput-wide v0, dot.junit.opcodes.sget_wide.d.T_sget_wide_1.pvt1 J
47 sget-wide v1, dot.junit.opcodes.sget_wide.d.T_sget_wide_1.i1 J
48 return-wide v1
  /external/iproute2/include/linux/
if_addrlabel.h 4 * Copyright (C)2007 USAGI/WIDE Project, All Rights Reserved.
7 * YOSHIFUJI Hideaki @ USAGI/WIDE <yoshfuji@linux-ipv6.org>
  /external/smali/smali/src/test/resources/LexerTest/
InstructionTest.smali 7 move-result-wide
11 return-wide
13 move-wide
64 sget-wide
71 sput-wide
78 sget-wide-volatile
81 sput-wide-volatile
88 const-wide/high16
90 const-wide/16
104 iget-wide
    [all...]
InstructionTest.tokens 7 INSTRUCTION_FORMAT11x("move-result-wide")
11 INSTRUCTION_FORMAT11x("return-wide")
13 INSTRUCTION_FORMAT12x_OR_ID("move-wide")
64 INSTRUCTION_FORMAT21c_FIELD("sget-wide")
71 INSTRUCTION_FORMAT21c_FIELD("sput-wide")
78 INSTRUCTION_FORMAT21c_FIELD_ODEX("sget-wide-volatile")
81 INSTRUCTION_FORMAT21c_FIELD_ODEX("sput-wide-volatile")
88 INSTRUCTION_FORMAT21h("const-wide/high16")
90 INSTRUCTION_FORMAT21s("const-wide/16")
104 INSTRUCTION_FORMAT22c_FIELD("iget-wide")
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_result_wide/d/
T_move_result_wide_5.d 30 const-wide v0, 123
33 move-result-wide v1
35 return-wide v0
41 const-wide v0, 12345
42 return-wide v0
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_wide_from16/d/
T_move_wide_from16_1.d 29 const-wide v10, 5678233453
31 move-wide/16 v4001, v10
33 move-wide/from16 v255, v4001
34 move-wide/from16 v1, v255
36 const-wide v4, 5678233453

Completed in 550 milliseconds

12 3 4 5 6 7 8 91011>>