HomeSort by relevance Sort by last modified time
    Searched refs:wide (Results 1 - 25 of 695) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
multiple_decls.h 3 struct wide { int value; }; struct
4 int wide(char);
multiple_decls.c 9 wide(c);
12 struct wide w;
  /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...]
sys_string_conversions_posix.cc 14 std::string SysWideToUTF8(const std::wstring& wide) {
17 return WideToUTF8(wide);
32 std::string SysWideToNativeMB(const std::wstring& wide) {
33 return WideToUTF8(wide);
42 std::string SysWideToNativeMB(const std::wstring& wide) {
49 for (size_t i = 0; i < wide.size(); ++i) {
50 const wchar_t src = wide[i];
78 // wide input, and |j| tracking the multi-byte output.
80 for (size_t i = 0, j = 0; i < wide.size(); ++i) {
81 const wchar_t src = wide[i]
    [all...]
sys_string_conversions_unittest.cc 164 std::wstring wide = kConvertRoundtripCases[i]; local
165 std::wstring trip = SysNativeMBToWide(SysWideToNativeMB(wide));
166 EXPECT_EQ(wide.size(), trip.size());
167 EXPECT_EQ(wide, trip);
172 std::wstring wide = kConvertRoundtripCases[i]; local
173 std::wstring trip = SysNativeMBToWide(WideToUTF8(wide));
174 EXPECT_EQ(wide.size(), trip.size());
175 EXPECT_EQ(wide, trip);
179 std::wstring wide = kConvertRoundtripCases[i]; local
180 std::wstring trip = UTF8ToWide(SysWideToNativeMB(wide));
    [all...]
  /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...]
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/emma/core/java12/com/vladium/jcd/opcodes/
IOpcodeVisitor.java 20 void visit (int opcode, boolean wide, int offset, Object ctx);
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
FastTimes.c 146 UnsignedWide wide; local
152 wide = (gUpTime) ? (*gA2NS)((*gUpTime)()) :
154 usec1 = (gUseRTC) ? RTCToNano(wide) : WideTo64bit(wide);
160 wide = (gUpTime) ? (*gA2NS)((*gUpTime)()) :
162 usec2 = (gUseRTC) ? RTCToNano(wide) : WideTo64bit(wide);
181 UnsignedWide wide; local
190 wide = (*gA2NS)((*gUpTime)());
191 usec = (double) WideTo64bit(wide) * gScaleUSec + 0.5
223 UnsignedWide wide; local
    [all...]
  /art/compiler/dex/
reg_location.h 44 unsigned wide:1; member in struct:art::RegLocation
vreg_analysis.cc 84 if (is_wide && !reg_location_[index].wide) {
85 reg_location_[index].wide = true;
93 if (!reg_location_[index].wide) {
94 reg_location_[index].wide = true;
150 reg_location_[defs[0]].wide = true;
151 reg_location_[defs[1]].wide = true;
169 reg_location_[uses[next]].wide = true;
170 reg_location_[uses[next + 1]].wide = true;
176 type_mismatch |= reg_location_[uses[next]].wide;
188 reg_location_[uses[next]].wide = true
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_wide_16/d/
T_move_wide_16_1.d 29 const-wide v0, 123
30 const-wide v2, 5678
32 move-wide/16 v4000, v0
33 move-wide/16 v4002, v2
35 move-wide/16 v4000, v4002
37 const-wide v4, 5678
39 move-wide/16 v0, v4000
40 move-wide/16 v2, v4002
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
utf_util_win.h 37 inline std::string ToUtf8(const wchar_t* wide, size_t len) {
38 int len8 = ::WideCharToMultiByte(CP_UTF8, 0, wide, static_cast<int>(len),
41 ::WideCharToMultiByte(CP_UTF8, 0, wide, static_cast<int>(len), ns.get(), len8,
46 inline std::string ToUtf8(const wchar_t* wide) {
47 return ToUtf8(wide, wcslen(wide));
  /external/libcxx/test/input.output/iostream.objects/wide.stream.objects/
Android.mk 17 test_makefile := external/libcxx/test/input.output/iostream.objects/wide.stream.objects/Android.mk
19 test_name := input.output/iostream.objects/wide.stream.objects/wclog
23 test_name := input.output/iostream.objects/wide.stream.objects/wcerr
27 test_name := input.output/iostream.objects/wide.stream.objects/wcout
31 test_name := input.output/iostream.objects/wide.stream.objects/wcin
  /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/chromium_org/components/dom_distiller/core/css/
distilledpage.css 13 .margin-wide{width:55%;}
14 .margin-x-wide{width:35%;}
  /external/chromium_org/third_party/skia/src/animator/
SkTime.cpp 62 UnsignedWide wide; local
63 ::Microseconds(&wide);
65 int64_t s = ((int64_t)wide.hi << 32) | wide.lo;
  /external/skia/src/animator/
SkTime.cpp 62 UnsignedWide wide; local
63 ::Microseconds(&wide);
65 int64_t s = ((int64_t)wide.hi << 32) | wide.lo;
  /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
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32.h 80 inline std::string ToUtf8(const wchar_t* wide, size_t len) {
81 int len8 = ::WideCharToMultiByte(CP_UTF8, 0, wide, static_cast<int>(len),
84 ::WideCharToMultiByte(CP_UTF8, 0, wide, static_cast<int>(len), ns, len8,
89 inline std::string ToUtf8(const wchar_t* wide) {
90 return ToUtf8(wide, wcslen(wide));
  /external/chromium_org/third_party/webrtc/base/
win32.h 63 inline std::string ToUtf8(const wchar_t* wide, size_t len) {
64 int len8 = ::WideCharToMultiByte(CP_UTF8, 0, wide, static_cast<int>(len),
67 ::WideCharToMultiByte(CP_UTF8, 0, wide, static_cast<int>(len), ns, len8,
72 inline std::string ToUtf8(const wchar_t* wide) {
73 return ToUtf8(wide, wcslen(wide));

Completed in 1170 milliseconds

1 2 3 4 5 6 7 8 91011>>