Home
last modified time | relevance | path

Searched refs:h_ (Results 1 – 25 of 213) sorted by relevance

123456789

/external/jdiff/src/jdiff/
DHTMLFiles.java17 h_ = h; in HTMLFiles()
21 private HTMLReportGenerator h_ = null; field in HTMLFiles
30 h_.reportFile = new PrintWriter(fos); in emitTopLevelFile()
32 h_.writeStartHTMLHeaderWithDate(); in emitTopLevelFile()
40 if (h_.windowTitle == null) in emitTopLevelFile()
41 h_.writeHTMLTitle("API Differences between " + oldAPIName + " and " + newAPIName); in emitTopLevelFile()
43 h_.writeHTMLTitle(h_.windowTitle); in emitTopLevelFile()
45 h_.writeStyleSheetRef(true); in emitTopLevelFile()
46 h_.writeText("</head>"); in emitTopLevelFile()
48h_.writeText("<frameset cols=\"242,**\" framespacing=\"1\" frameborder=\"yes\" border=\"1\" border… in emitTopLevelFile()
[all …]
DHTMLStatistics.java19 h_ = h; in HTMLStatistics()
23 private HTMLReportGenerator h_ = null; field in HTMLStatistics
32 h_.reportFile = new PrintWriter(fos); in emitStatistics()
34 h_.writeStartHTMLHeader(); in emitStatistics()
42 h_.writeHTMLTitle("API Change Statistics"); in emitStatistics()
43 h_.writeStyleSheetRef(); in emitStatistics()
44 h_.writeText("</HEAD>"); in emitStatistics()
45 h_.writeText("<body class=\"gc-documentation\">"); in emitStatistics()
52 h_.writeText("<!-- Start of nav bar -->"); in emitStatistics()
58 h_.writeText("<a name=\"top\"></a>"); in emitStatistics()
[all …]
DHTMLIndexes.java17 h_ = h; in HTMLIndexes()
21 private HTMLReportGenerator h_ = null; field in HTMLIndexes
75 filename += "_removals" + h_.reportFileExt; in emitBottomLeftFile()
78 filename += "_additions" + h_.reportFileExt; in emitBottomLeftFile()
81 filename += "_changes" + h_.reportFileExt; in emitBottomLeftFile()
84 filename += "_all" + h_.reportFileExt; in emitBottomLeftFile()
89 h_.reportFile = new PrintWriter(fos); in emitBottomLeftFile()
90 h_.writeStartHTMLHeader(); in emitBottomLeftFile()
91 h_.writeHTMLTitle(title); in emitBottomLeftFile()
92 h_.writeStyleSheetRef(); in emitBottomLeftFile()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_win.cc153 ScopedHandle() : h_(nullptr) {} in ScopedHandle()
154 explicit ScopedHandle(HANDLE h) : h_(h) {} in ScopedHandle()
156 if (h_) in ~ScopedHandle()
157 ::CloseHandle(h_); in ~ScopedHandle()
159 HANDLE get() { return h_; } in get()
160 HANDLE *receive() { return &h_; } in receive()
162 HANDLE h = h_; in release()
163 h_ = nullptr; in release()
166 HANDLE h_; member
/external/pdfium/testing/image_diff/
Dimage_diff.cpp42 Image() : w_(0), h_(0) {} in Image()
43 Image(const Image& image) : w_(image.w_), h_(image.h_), data_(image.data_) {} in Image()
45 bool has_image() const { return w_ > 0 && h_ > 0; } in has_image()
47 int h() const { return h_; } in h()
68 &w_, &h_)) { in CreateFromFilename()
76 w_ = h_ = 0; in Clear()
97 return x >= 0 && x < w_ && y >= 0 && y < h_; in pixel_in_bounds()
104 int h_; member in Image
/external/libaom/libaom/test/
Dblend_a64_mask_test.cc87 h_ = block_size_high[block_size]; in RunOneTest()
115 for (int r = 0; r < h_; ++r) { in RunOneTest()
119 << w_ << "x" << h_ << " subx " << subx_ << " suby " << suby_ in RunOneTest()
148 int h_; member in __anon7fdfd31c0111::BlendA64MaskTest
173 kMaxMaskWidth, w_, h_, subx_, suby_); in Execute()
182 kMaxMaskWidth, w_, h_, subx_, suby_); in Execute()
187 printf("%3dx%-3d subx %d suby %d :%7.2f/%7.2fns", w_, h_, subx_, suby_, in Execute()
287 kMaxMaskWidth, w_, h_, subx_, suby_, &conv_params); in Execute()
296 kMaxMaskWidth, w_, h_, subx_, suby_, &conv_params); in Execute()
301 printf("%3dx%-3d subx %d suby %d :%7.2f/%7.2fns", w_, h_, subx_, suby_, in Execute()
[all …]
Dav1_horz_only_frame_superres_test.cc41 : w_src_(w_src), h_(h), superres_denom_(superres_denom), x0_(x0), in TestImage()
66 int src_block_size() const { return (h_ + 2 * kVPad) * src_stride(); } in src_block_size()
67 int dst_block_size() const { return (h_ + 2 * kVPad) * dst_stride(); } in dst_block_size()
71 int height() const { return h_; } in height()
85 int w_src_, w_dst_, h_, superres_denom_, x0_, bd_; member in __anon25430c2f0111::TestImage
131 PrepBuffers(rnd, w_src_, h_, src_stride_, bd_, false, &src_data_[0]); in Initialize()
132 PrepBuffers(rnd, w_dst_, h_, dst_stride_, bd_, true, &dst_data_[0]); in Initialize()
147 for (int r = kVPad; r < h_ + kVPad; ++r) { in Check()
154 << ", superres_denom: " << superres_denom_ << ", height: " << h_ in Check()
Dblend_a64_mask_1d_test.cc50 h_ = 2 << this->rng_(MAX_SB_SIZE_LOG2); in Common()
86 for (int r = 0; r < h_; ++r) { in Common()
110 int h_; member in __anon6454a5500111::BlendA64Mask1DTest
127 w_, h_); in Execute()
130 src0_stride_, p_src1 + src1_offset_, src1_stride_, mask_, w_, h_)); in Execute()
234 mask_, w_, h_, bit_depth_); in Execute()
238 CONVERT_TO_BYTEPTR(p_src1 + src1_offset_), src1_stride_, mask_, w_, h_, in Execute()
Dav1_convolve_scale_test.cc113 TestImage(int w, int h, int bd) : w_(w), h_(h), bd_(bd) { in TestImage()
135 int src_block_size() const { return (h_ + 2 * kVPad) * src_stride(); } in src_block_size()
136 int dst_block_size() const { return (h_ + 2 * kVPad) * dst_stride(); } in dst_block_size()
154 int w_, h_, bd_; member in __anonb31ac89c0111::TestImage
201 PrepBuffers(rnd, w_, h_, src_stride_, bd_, false, &src_data_[0]); in Initialize()
202 PrepBuffers(rnd, w_, h_, dst_stride_, bd_, true, &dst_data_[0]); in Initialize()
203 PrepBuffers(rnd, w_, h_, dst_stride_, bd_, true, &dst_16_data_[0]); in Initialize()
223 for (int r = 0; r < h_ + 2 * kVPad; ++r) { in Check()
233 for (int r = 0; r < h_ + 2 * kVPad; ++r) { in Check()
/external/vixl/test/aarch64/
Dtest-utils-aarch64.h68 VIXL_ASSERT(sizeof(dump_.h_[0]) == kHRegSizeInBytes); in RegisterDump()
105 return dump_.h_[code]; in hreg_bits()
176 ((dump_.s_[code] & kHRegMask) == dump_.h_[code])); in FPRegAliasesMatch()
189 uint16_t h_[kNumberOfFPRegisters]; member
Dtest-utils-aarch64.cc454 const int h_offset = offsetof(dump_t, h_); in Dump()
/external/libchrome/mojo/core/
Dmultiprocess_message_pipe_unittest.cc93 explicit CommandDrivenClientController(MojoHandle h) : h_(h) {} in CommandDrivenClientController()
96 WriteMessage(h_, command); in Send()
97 EXPECT_EQ("ok", ReadMessage(h_)); in Send()
101 WriteMessageWithHandles(h_, "take:" + name, &p, 1); in SendHandle()
102 EXPECT_EQ("ok", ReadMessage(h_)); in SendHandle()
106 WriteMessage(h_, "return:" + name); in RetrieveHandle()
108 EXPECT_EQ("ok", ReadMessageWithHandles(h_, &p, 1)); in RetrieveHandle()
112 void Exit() { WriteMessage(h_, "exit"); } in Exit()
115 MojoHandle h_; member in mojo::core::__anonddc81e880111::MultiprocessMessagePipeTest::CommandDrivenClientController
/external/ImageMagick/PerlMagick/t/reference/read/
Dinput_uyvy.miff14h_�r]�s]�g\�h\�f_�__�c^�e^�db�xb�mb�]b�_a�ea�vf�jf�ye�~eɄmΊm΅tҋtҋmэmщl�tlǀx��x���}��}�}��}��|��|��…
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D9345978bb5e6017552a53df907b2037a.0000cbf9.honggfuzz.cov23 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
81 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
106 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
143 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
201 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
D29c1b94b19b98991404fc68f943cc64e.00003948.honggfuzz.cov46 …׆�mRd�D��v��~:�+�3:�X8� %:��ڃ5Ru*8:H���=�)�[!��� L�͜�@ &�������h_�+(>��T��\�z��0��P�…
Ded5830dff5509b2282c3253668159ae8.00003847.honggfuzz.cov20 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
46 …��@����Y�ٚ6:6(�XG��;�C�Z���&�W�Q���"d�.C��W�xM��D�fR��6&�����s�B�h_�l�G���Ƈ����Vj��O~� …
D4a490558487db30574658fa225fe2ff3.0000720b.honggfuzz.cov36 ���˵��$�CXڸ�랛��y �2�l*9��fr�(��,��iP}��{���ev{��܆j7�h_�
D139785eb4720a2ac6a19f711aa670ce2.0000eb47.honggfuzz.cov33 …O���AbH�C%]��t�:S�7��7�X���[>�1����,-c )�*^LHnqwO22��"α�:�l����~�c&3�h_�r���b�3�]��i��
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D9345978bb5e6017552a53df907b2037a.0000cbf9.honggfuzz.cov23 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
81 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
106 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
143 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
201 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
Ded5830dff5509b2282c3253668159ae8.00003847.honggfuzz.cov20 |WO�S*?Ne���Wm=�r��D�M�N��yn�]`�h_'���&�%1/cƫ��7'�Oʦ�DZ��;�m�P�U^�g9�_�k���-%������E …
46 …��@����Y�ٚ6:6(�XG��;�C�Z���&�W�Q���"d�.C��W�xM��D�fR��6&�����s�B�h_�l�G���Ƈ����Vj��O~� …
D4a490558487db30574658fa225fe2ff3.0000720b.honggfuzz.cov36 ���˵��$�CXڸ�랛��y �2�l*9��fr�(��,��iP}��{���ev{��܆j7�h_�
/external/tensorflow/tensorflow/contrib/linear_optimizer/kernels/g3doc/
Dreadme.md21 For an $$n$$-dimensional vector $$h$$, we denote by $$h_{[k]}$$ the
22 $$n$$-dimensional vector restricted to the machine $$k$$: $$(h_{[k]})_i = h_i$$
/external/ImageMagick/PerlMagick/t/reference/write/filter/
DGamma.miff43h_�gZ�m\�gV�rq�tq�aY�`Y�cS�eM�h`�el�����a]�mt�jq�ac�_`�_Z�]Y�eX�f]�`_�ab�`^�`V�aP�ZS�]_�YX�^R�om��…
/external/deqp/modules/gles2/functional/
Des2fVertexTextureTests.cpp119 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {} in Rect()
/external/ImageMagick/PerlMagick/t/reference/composite/
DDifference.miff19 …o{ky i}n|plki8ku5tzrf3igY^>UkNDfB[:[TQ�fQ�cKnXBaO6UF-H@&D<$OA&WC^Lh_\��p{�gn�IPt7+R@'RA%U…

123456789