/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/dentry/mock/ |
H A D | base_interface_lib_mock.cpp | 98 uint32_t FindNextZeroBit(const uint8_t addr[], uint32_t maxSlots, uint32_t start) in FindNextZeroBit() argument 108 return BaseInterfaceLib::baseInterfaceLib_->FindNextZeroBit(addr, maxSlots, start); in FindNextZeroBit() 111 uint32_t FindNextBit(const uint8_t addr[], uint32_t maxSlots, uint32_t start) in FindNextBit() argument 121 return BaseInterfaceLib::baseInterfaceLib_->FindNextBit(addr, maxSlots, start); in FindNextBit()
|
H A D | base_interface_lib_mock.h | 37 virtual uint32_t FindNextZeroBit(const uint8_t addr[], uint32_t maxSlots, uint32_t start) = 0; 38 virtual uint32_t FindNextBit(const uint8_t addr[], uint32_t maxSlots, uint32_t start) = 0; 54 MOCK_METHOD3(FindNextZeroBit, uint32_t(const uint8_t addr[], uint32_t maxSlots, uint32_t start)); 55 MOCK_METHOD3(FindNextBit, uint32_t(const uint8_t addr[], uint32_t maxSlots, uint32_t start));
|
/third_party/ffmpeg/libavcodec/ |
H A D | rl.c | 30 int last, run, level, start, end, i; in ff_rl_init() local 38 start = 0; in ff_rl_init() 41 start = rl->last; in ff_rl_init() 46 for (i = start; i < end; i++) { in ff_rl_init()
|
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | LowercaseTransliterator.java | 72 if(offsets.start >= offsets.limit) { in handleTransliterate() 83 iter.setIndex(offsets.start); in handleTransliterate() 92 offsets.start=iter.getCaseMapCPStart(); in handleTransliterate() 114 offsets.start = offsets.limit; in handleTransliterate()
|
H A D | UppercaseTransliterator.java | 68 if(offsets.start >= offsets.limit) { in handleTransliterate() 79 iter.setIndex(offsets.start); in handleTransliterate() 88 offsets.start=iter.getCaseMapCPStart(); in handleTransliterate() 110 offsets.start = offsets.limit; in handleTransliterate()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | utf16collationiterator.h | 39 start(s), pos(p), limit(lim) {} in UTF16CollationIterator() 53 start = pos = s; in setText() 65 start(NULL), pos(NULL), limit(NULL) {} in UTF16CollationIterator() 79 const UChar *start, *pos, *limit; member in UTF16CollationIterator 134 * To be called when checkDir > 0 || (checkDir == 0 && pos == start). 135 * Returns with checkDir < 0 || (checkDir == 0 && pos != start). 141 * To be called when checkDir < 0 && pos != start. 142 * @return true if success, checkDir == 0 and pos != start 160 // segmentStart is undefined, start == rawStart. 167 // and segmentStart==start< [all...] |
H A D | name2uni.cpp | 48 _set_addRange(USet *set, UChar32 start, UChar32 end) { 49 ((UnicodeSet *)set)->add(start, end); 118 offsets.start = offsets.limit; in handleTransliterate() 126 offsets.start = offsets.limit; in handleTransliterate() 133 int32_t cursor = offsets.start; in handleTransliterate() 252 offsets.start = (isIncremental && openPos >= 0) ? openPos : cursor; in handleTransliterate()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/ |
H A D | Timer.java | 27 start(); 30 public Timer start() { in start() method in Timer 105 start(); in timeIterations() 112 start(); in timeIterations()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
H A D | LSTMBreakEngineTest.java | 94 int start = 0; in runTestFromFile() 97 while ((sep = fields[1].indexOf('|', start)) >= 0) { in runTestFromFile() 98 int len = sep - start; in runTestFromFile() 106 start = sep + 1; in runTestFromFile()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | LowercaseTransliterator.java | 73 if(offsets.start >= offsets.limit) { in handleTransliterate() 84 iter.setIndex(offsets.start); in handleTransliterate() 93 offsets.start=iter.getCaseMapCPStart(); in handleTransliterate() 115 offsets.start = offsets.limit; in handleTransliterate()
|
H A D | UppercaseTransliterator.java | 69 if(offsets.start >= offsets.limit) { in handleTransliterate() 80 iter.setIndex(offsets.start); in handleTransliterate() 89 offsets.start=iter.getCaseMapCPStart(); in handleTransliterate() 111 offsets.start = offsets.limit; in handleTransliterate()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/ |
H A D | CharacterProperties.java | 65 int start = 0; in makeMap() 75 mutableTrie.setRange(start, c - 1, value); in makeMap() 77 start = c; in makeMap() 83 mutableTrie.setRange(start, 0x10FFFF, value); in makeMap()
|
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
H A D | Timer.java | 24 start(); 27 public Timer start() { in start() method in Timer 102 start(); in timeIterations() 109 start(); in timeIterations()
|
/third_party/libsnd/programs/ |
H A D | sndfile-metadata-get.c | 58 int start ; in main() local 69 start = 1 ; in main() 73 start = 2 ; in main() 90 process_args (file, &binfo, argc - 2, argv + start) ; in main()
|
/third_party/lzma/CS/7zip/Compress/RangeCoder/ |
H A D | RangeCoder.cs | 54 public void Encode(uint start, uint size, uint total)
in Encode() argument 56 Low += start * (Range /= total);
in Encode() 175 public void Decode(uint start, uint size, uint total)
in Decode() argument 177 Code -= start * Range;
in Decode()
|
/third_party/mesa3d/src/gallium/drivers/v3d/ |
H A D | v3d_query_pipe.c | 30 * bracketed by the start and end of counting, even across FBO transitions. 45 uint32_t start, end; member 71 pquery->start = v3d->prims_generated; in v3d_begin_query_pipe() 80 pquery->start = v3d->tf_prims_generated; in v3d_begin_query_pipe() 173 vresult->u64 = pquery->end - pquery->start; in v3d_get_query_result_pipe()
|
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_csb.c | 78 csb->start = NULL; in pvr_csb_init() 187 csb->start = pvr_bo->bo->map; in pvr_csb_buffer_extend() 192 csb->end = csb->start + pvr_bo->bo->size - stream_link_space; in pvr_csb_buffer_extend() 193 csb->next = csb->start; in pvr_csb_buffer_extend()
|
/third_party/node/test/parallel/ |
H A D | test-debugger-run-after-quit-restart.js | 45 .then(() => cli.waitFor(/start the app/)) 47 assert.match(cli.output, /Use `run` to start the app again/); 75 .then(() => cli.waitFor(/start the app/)) 77 assert.match(cli.output, /Use `run` to start the app again/);
|
H A D | test-repl-options.js | 47 const r1 = repl.start({ 68 const r2 = repl.start({ 93 const r3 = () => repl.start({ 105 const r4 = repl.start();
|
/third_party/node/deps/v8/src/wasm/ |
H A D | local-decl-encoder.cc | 18 void LocalDeclEncoder::Prepend(Zone* zone, const byte** start, in Prepend() argument 20 size_t size = (*end - *start); in Prepend() 24 memcpy(buffer + pos, *start, size); in Prepend() 27 *start = buffer; in Prepend()
|
/third_party/node/benchmark/napi/define_properties/ |
H A D | binding.c | 23 napi_value argv[2], undefined, js_array_length, start, end; in Runner() local 30 // Validate params and retrieve start and end function. in Runner() 38 NODE_API_CALL(napi_get_named_property(env, argv[0], "start", &start)); in Runner() 39 NODE_API_CALL(napi_typeof(env, start, &val_type)); in Runner() 58 napi_call_function(env, argv[0], start, 0, NULL, NULL); in Runner()
|
/third_party/node/benchmark/buffers/ |
H A D | buffer-write.js | 91 bench.start(); 100 bench.start(); 110 bench.start(); 118 bench.start();
|
/third_party/node/deps/brotli/c/common/ |
H A D | constants.h | 150 uint32_t start; in BrotliCalculateDistanceCodeLimit() local 151 /* Remove postfix and "head-start". */ in BrotliCalculateDistanceCodeLimit() 176 /* Calculate region start. NB: ndistbits >= 1. */ in BrotliCalculateDistanceCodeLimit() 177 start = (1u << (ndistbits + 1)) - 4; in BrotliCalculateDistanceCodeLimit() 179 start += (group & 1) << ndistbits; in BrotliCalculateDistanceCodeLimit() 184 result.max_distance = ((start + extra) << npostfix) + postfix + ndirect + 1; in BrotliCalculateDistanceCodeLimit()
|
/third_party/mesa3d/src/intel/tools/ |
H A D | aubinator_viewer_urb.h | 48 ImVec2 alloc_tl(x + stages[s].start * alloc_delta, y); in DrawAllocation() 49 ImVec2 alloc_br(x + (stages[s].start + in DrawAllocation() 70 ImGui::SetTooltip("%s: start=%u end=%u", in DrawAllocation() 72 stages[s].start, in DrawAllocation() 73 stages[s].start + stages[s].n_entries * stages[s].size); in DrawAllocation() 83 ImGui::SetTooltip("%s constant: start=%u end=%u", in DrawAllocation()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | utf16collationiterator.h | 39 start(s), pos(p), limit(lim) {} in UTF16CollationIterator() 53 start = pos = s; in setText() 65 start(nullptr), pos(nullptr), limit(nullptr) {} in UTF16CollationIterator() 79 const char16_t *start, *pos, *limit; member in UTF16CollationIterator 134 * To be called when checkDir > 0 || (checkDir == 0 && pos == start). 135 * Returns with checkDir < 0 || (checkDir == 0 && pos != start). 141 * To be called when checkDir < 0 && pos != start. 142 * @return true if success, checkDir == 0 and pos != start 160 // segmentStart is undefined, start == rawStart. 167 // and segmentStart==start< [all...] |