/third_party/python/Lib/test/ |
H A D | test_smtplib.py | 257 self.thread.start() 790 self.thread.start() 1046 self.thread.start() 1399 self.thread.start() 1527 self.thread.start()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | descriptor_unittest.cc | 148 int start, int end) { in AddExtensionRange() 150 result->set_start(start); in AddExtensionRange() 156 int start, int end) { in AddReservedRange() 158 result->set_start(start); in AddReservedRange() 164 EnumDescriptorProto* parent, int start, int end) { in AddReservedRange() 166 result->set_start(start); in AddReservedRange() 1917 EXPECT_EQ(10, foo_->extension_range(0)->start); in TEST_F() 1918 EXPECT_EQ(30, foo_->extension_range(1)->start); in TEST_F() 2107 EXPECT_EQ(2, foo_->reserved_range(0)->start); in TEST_F() 2110 EXPECT_EQ(9, foo_->reserved_range(1)->start); in TEST_F() 147 AddExtensionRange(DescriptorProto* parent, int start, int end) AddExtensionRange() argument 155 AddReservedRange(DescriptorProto* parent, int start, int end) AddReservedRange() argument 163 AddReservedRange( EnumDescriptorProto* parent, int start, int end) AddReservedRange() argument [all...] |
/drivers/hdf_core/framework/model/storage/src/mmc/ |
H A D | mmc_protocol.c | 49 static uint32_t MmcParseBits(const uint32_t *data, uint32_t bitsLen, uint32_t start, uint32_t size) in MmcParseBits() argument 55 if (start >= bitsLen || size == 0) { in MmcParseBits() 64 index = (bitsLen / BITS_NUMBER_OF_4_BYTES) - (start / BITS_NUMBER_OF_4_BYTES) - 1; in MmcParseBits() 65 shift = start & (BITS_NUMBER_OF_4_BYTES - 1); in MmcParseBits() 562 static int32_t MmcAlignEraseSize(struct MmcCntlr *cntlr, uint32_t *start, uint32_t *end, uint32_t size) in MmcAlignEraseSize() argument 571 /* align start. */ in MmcAlignEraseSize() 572 tmp = (*start) % cntlr->curDev->eraseSize; in MmcAlignEraseSize() 575 (*start) += tmp; in MmcAlignEraseSize() 592 (*end) = (*start) + curSize; in MmcAlignEraseSize() 599 uint32_t start in MmcSendErase() local [all...] |
/third_party/googletest/googletest/src/ |
H A D | gtest.cc | 191 // The text used in failure messages to indicate the start of the 1538 size_t start = 0, end = str.size(); 1540 ++start; 1544 for (size_t i = start; i + 1 < end; ++i) { 1548 lines.push_back(str.substr(start, i - start - 1)); 1549 start = i + 1; 1555 lines.push_back(str.substr(start, end - start)); 2201 const char* const start [all...] |
/third_party/node/deps/googletest/src/ |
H A D | gtest.cc | 199 // The text used in failure messages to indicate the start of the 1555 size_t start = 0, end = str.size(); 1557 ++start; 1561 for (size_t i = start; i + 1 < end; ++i) { 1565 lines.push_back(str.substr(start, i - start - 1)); 1566 start = i + 1; 1572 lines.push_back(str.substr(start, end - start)); 2218 const char* const start [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | fbobject.c | 5602 GLuint start, GLsizei count, const GLfloat *v, bool no_error, in sample_locations() 5615 if (start + count > MAX_SAMPLE_LOCATION_TABLE_SIZE) { in sample_locations() 5617 "%s(start+size > sample location table size)", name); in sample_locations() 5653 fb->SampleLocationTable[start * 2 + i] = 0.5f; in sample_locations() 5655 fb->SampleLocationTable[start * 2 + i] = SATURATE(v[i]); in sample_locations() 5663 _mesa_FramebufferSampleLocationsfvARB(GLenum target, GLuint start, in _mesa_FramebufferSampleLocationsfvARB() argument 5678 sample_locations(ctx, fb, start, count, v, false, in _mesa_FramebufferSampleLocationsfvARB() 5683 _mesa_NamedFramebufferSampleLocationsfvARB(GLuint framebuffer, GLuint start, in _mesa_NamedFramebufferSampleLocationsfvARB() argument 5699 sample_locations(ctx, fb, start, count, v, false, in _mesa_NamedFramebufferSampleLocationsfvARB() 5704 _mesa_FramebufferSampleLocationsfvARB_no_error(GLenum target, GLuint start, in _mesa_FramebufferSampleLocationsfvARB_no_error() argument 5601 sample_locations(struct gl_context *ctx, struct gl_framebuffer *fb, GLuint start, GLsizei count, const GLfloat *v, bool no_error, const char *name) sample_locations() argument 5713 _mesa_NamedFramebufferSampleLocationsfvARB_no_error(GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v) _mesa_NamedFramebufferSampleLocationsfvARB_no_error() argument [all...] |
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | device9.c | 2982 NineTrackSystemmemDynamic( struct NineBuffer9 *This, unsigned start, unsigned width ) in NineTrackSystemmemDynamic() argument 2986 if (start >= This->size) in NineTrackSystemmemDynamic() 2988 u_box_1d(start, MIN2(width, This->size-start), &box); in NineTrackSystemmemDynamic() 3010 unsigned start = This->state.vtxbuf[i].buffer_offset + StartVertex * stride; in NineDevice9_DrawPrimitive() local 3013 unsigned size = MIN2(full_size-start, num_vertices * stride); in NineDevice9_DrawPrimitive() 3016 NineTrackSystemmemDynamic(&This->state.stream[i]->base, start, size); in NineDevice9_DrawPrimitive() 3057 uint32_t start, stop; in NineDevice9_DrawIndexedPrimitive() local 3059 start = MAX2(0, This->state.vtxbuf[i].buffer_offset+(MinVertexIndex+BaseVertexIndex)*stride); in NineDevice9_DrawIndexedPrimitive() 3063 start, sto in NineDevice9_DrawIndexedPrimitive() [all...] |
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_cross.cpp | 1537 auto *start = &from; in execution_is_noop() 1540 if (start->self == to.self) in execution_is_noop() 1543 if (!start->ops.empty()) in execution_is_noop() 1546 auto &next = get<SPIRBlock>(start->next_block); in execution_is_noop() 1549 if (phi.parent == start->self) in execution_is_noop() 1552 start = &next; in execution_is_noop() 1558 auto *start = &from; in execution_is_branchless() local 1561 if (start->self == to.self) in execution_is_branchless() 1564 if (start->terminator == SPIRBlock::Direct && start in execution_is_branchless() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/ |
H A D | assembler_arm.cc | 776 Register base, SRegister start, 781 ASSERT(start != kNoSRegister); 782 ASSERT(static_cast<int32_t>(start) + count <= kNumberOfSRegisters); 787 ((static_cast<int32_t>(start) & 0x1) ? D : 0) | 788 ((static_cast<int32_t>(start) >> 1) << 12) | count; 793 Register base, DRegister start, 798 ASSERT(start != kNoDRegister); 799 ASSERT(static_cast<int32_t>(start) + count <= kNumberOfDRegisters); 805 ((static_cast<int32_t>(start) & 0x10) ? D : 0) | 806 ((static_cast<int32_t>(start) [all...] |
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_state.c | 915 unsigned start) in upload_shader_consts() 921 unsigned offset = start * 16; in upload_shader_consts() 932 unsigned start = range->start * 8 * sizeof(float); in upload_shader_consts() local 936 ice->state.shaders[stage].constbufs[block_index].buffer_offset + start, len, in upload_shader_consts() 2302 unsigned start, unsigned count, in crocus_bind_sampler_states() 2309 assert(start + count <= CROCUS_MAX_TEXTURE_SAMPLERS); in crocus_bind_sampler_states() 2314 if (shs->samplers[start + i] != states[i]) { in crocus_bind_sampler_states() 2315 shs->samplers[start + i] = states[i]; in crocus_bind_sampler_states() 3149 unsigned start, unsigne in crocus_set_sampler_views() 912 upload_shader_consts(struct crocus_context *ice, gl_shader_stage stage, uint32_t *map, unsigned start) upload_shader_consts() argument 2300 crocus_bind_sampler_states(struct pipe_context *ctx, enum pipe_shader_type p_stage, unsigned start, unsigned count, void **states) crocus_bind_sampler_states() argument 3147 crocus_set_sampler_views(struct pipe_context *ctx, enum pipe_shader_type p_stage, unsigned start, unsigned count, unsigned unbind_num_trailing_slots, bool take_ownership, struct pipe_sampler_view **views) crocus_set_sampler_views() argument 6098 unsigned start[4]; global() local 6575 uint32_t start = tgt->base.buffer_offset; global() local [all...] |
/drivers/hdf_core/adapter/platform/watchdog/ |
H A D | watchdog_stm32f4xx.c | 46 .start = WatchdogDevStart,
|
H A D | watchdog_bes.c | 33 .start = WatchdogDevStart,
|
/drivers/hdf_core/adapter/khdf/linux/platform/adc/ |
H A D | adc_iio_adapter.c | 139 .start = AdcIioStart,
|
/drivers/hdf_core/adapter/khdf/linux/platform/clock/ |
H A D | clock_adapter.c | 37 HDF_LOGI("device->clk already start\n"); in ClockStart() 180 .start = ClockStart,
|
/drivers/hdf_core/adapter/platform/gpio/ |
H A D | gpio_wm.c | 348 HDF_LOGE("GpioCntlrAdd fail %d\r\n", gpioCntlr->start); in GpioDriverInit()
|
/drivers/peripheral/audio/test/systemtest/common/hdi_common/include/ |
H A D | audio_hdi_common.h | 200 struct timeval start; member
|
/drivers/peripheral/audio/test/systemtest/common/hdi_service_common/include/ |
H A D | hdi_service_common.h | 174 struct timeval start; member
|
/foundation/arkui/ace_engine/frameworks/core/components/text_overlay/ |
H A D | text_overlay_component.h | 44 std::function<void(int32_t start, const Offset&, const std::function<void(const Offset&)>&)>;
|
/foundation/arkui/ace_engine/frameworks/core/components/web/ |
H A D | render_web.h | 39 TimeStamp start; member
|
/foundation/arkui/ace_engine/adapter/ohos/capability/html/ |
H A D | html_to_span.h | 99 size_t start; member
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_relative_container_bridge.cpp | 104 info.start = startPos.Value(); in SetGuideLine()
|
/foundation/arkui/ace_engine/adapter/ohos/osal/ |
H A D | ai_write_adapter.cpp | 171 wantParams.SetParam(LONG_SELECT_START, AAFwk::Integer::Box(aiWriteInfo_.start)); in SendData()
|
/foundation/arkui/ace_engine/frameworks/core/components_v2/grid/ |
H A D | render_grid_scroll.h | 185 void DealCache(int32_t start, int32_t end);
|
/foundation/arkui/ace_engine_lite/frameworks/tools/qt/simulator/jsfwk/targets/simulator/mock/amsthread/ |
H A D | ams_thread.cpp | 242 // create and start JS thread loop in CreateNewAppRecord() 245 newApp->start(); in CreateNewAppRecord()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/drawable/ |
H A D | rs_render_node_drawable_adapter.h | 214 // Note, the start is included, the end is excluded, so the range is [start, end) 215 void DrawRangeImpl(Drawing::Canvas& canvas, const Drawing::Rect& rect, int8_t start, int8_t end) const;
|