Home
last modified time | relevance | path

Searched refs:handlerCount (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/dports/lang/clips/clips_core_source_630/core/
H A Dmsgfun.c298 ni = (int) cls->handlerCount; in InsertHandlerHeader()
299 narr[ni] = cls->handlerCount; in InsertHandlerHeader()
302 nhnd[cls->handlerCount].busy = 0; in InsertHandlerHeader()
303 nhnd[cls->handlerCount].mark = 0; in InsertHandlerHeader()
315 if (cls->handlerCount != 0) in InsertHandlerHeader()
322 cls->handlerCount++; in InsertHandlerHeader()
382 if (cls->handlerCount == 0) in DeleteHandler()
501 if (count == cls->handlerCount) in DeallocateMarkedHandlers()
507 cls->handlerCount = 0; in DeallocateMarkedHandlers()
542 cls->handlerCount = count; in DeallocateMarkedHandlers()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/
H A DFifoRpcScheduler.java36 private final int handlerCount; field in FifoRpcScheduler
41 public FifoRpcScheduler(Configuration conf, int handlerCount) { in FifoRpcScheduler() argument
42 this.handlerCount = handlerCount; in FifoRpcScheduler()
44 handlerCount * RpcServer.DEFAULT_MAX_CALLQUEUE_LENGTH_PER_HANDLER); in FifoRpcScheduler()
55 handlerCount, in start()
56 handlerCount, in start()
H A DBalancedQueueRpcExecutor.java43 public BalancedQueueRpcExecutor(final String name, final int handlerCount, final int numQueues, in BalancedQueueRpcExecutor() argument
45 this(name, handlerCount, numQueues, maxQueueLength, null, null); in BalancedQueueRpcExecutor()
48 public BalancedQueueRpcExecutor(final String name, final int handlerCount, final int numQueues, in BalancedQueueRpcExecutor() argument
50 this(name, handlerCount, numQueues, conf, abortable, LinkedBlockingQueue.class, maxQueueLength); in BalancedQueueRpcExecutor()
53 public BalancedQueueRpcExecutor(final String name, final int handlerCount, final int numQueues, in BalancedQueueRpcExecutor() argument
55 this(name, handlerCount, numQueues, null, null, queueClass, initargs); in BalancedQueueRpcExecutor()
58 public BalancedQueueRpcExecutor(final String name, final int handlerCount, final int numQueues, in BalancedQueueRpcExecutor() argument
61 super(name, Math.max(handlerCount, numQueues), conf, abortable); in BalancedQueueRpcExecutor()
H A DRpcExecutor.java47 private final int handlerCount; field in RpcExecutor
56 public RpcExecutor(final String name, final int handlerCount) { in RpcExecutor() argument
57 this.handlers = new ArrayList<Thread>(handlerCount); in RpcExecutor()
58 this.handlerCount = handlerCount; in RpcExecutor()
62 public RpcExecutor(final String name, final int handlerCount, final Configuration conf, in RpcExecutor() argument
64 this(name, handlerCount); in RpcExecutor()
96 startHandlers(null, handlerCount, callQueues, 0, callQueues.size(), port); in startHandlers()
138 && failedCount > handlerCount * handlerFailureThreshhold) { in consumerLoop()
H A DSimpleRpcScheduler.java109 int handlerCount, in SimpleRpcScheduler() argument
116 handlerCount * RpcServer.DEFAULT_MAX_CALLQUEUE_LENGTH_PER_HANDLER); in SimpleRpcScheduler()
126 int numCallQueues = Math.max(1, (int)Math.round(handlerCount * callQueuesHandlersFactor)); in SimpleRpcScheduler()
134 callExecutor = new RWQueueRpcExecutor("RW.default", handlerCount, numCallQueues, in SimpleRpcScheduler()
138 callExecutor = new RWQueueRpcExecutor("RW.default", handlerCount, numCallQueues, in SimpleRpcScheduler()
145 callExecutor = new BalancedQueueRpcExecutor("B.default", handlerCount, numCallQueues, in SimpleRpcScheduler()
148 callExecutor = new BalancedQueueRpcExecutor("B.default", handlerCount, in SimpleRpcScheduler()
164 int handlerCount, in SimpleRpcScheduler() argument
169 this(conf, handlerCount, priorityHandlerCount, replicationHandlerCount, priority, in SimpleRpcScheduler()
H A DRWQueueRpcExecutor.java66 public RWQueueRpcExecutor(final String name, final int handlerCount, final int numQueues, in RWQueueRpcExecutor() argument
69 this(name, handlerCount, numQueues, readShare, maxQueueLength, 0, in RWQueueRpcExecutor()
73 public RWQueueRpcExecutor(final String name, final int handlerCount, final int numQueues, in RWQueueRpcExecutor() argument
75 this(name, handlerCount, numQueues, readShare, scanShare, maxQueueLength, null, null); in RWQueueRpcExecutor()
78 public RWQueueRpcExecutor(final String name, final int handlerCount, final int numQueues, in RWQueueRpcExecutor() argument
81 this(name, handlerCount, numQueues, readShare, scanShare, maxQueueLength, in RWQueueRpcExecutor()
85 public RWQueueRpcExecutor(final String name, final int handlerCount, final int numQueues, in RWQueueRpcExecutor() argument
89 this(name, handlerCount, numQueues, readShare, 0, maxQueueLength, conf, abortable, in RWQueueRpcExecutor()
93 public RWQueueRpcExecutor(final String name, final int handlerCount, final int numQueues, in RWQueueRpcExecutor() argument
97 this(name, calcNumWriters(handlerCount, readShare), calcNumReaders(handlerCount, readShare), in RWQueueRpcExecutor()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++abi/trunk/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
438 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
439 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
491 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
492 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
506 if (exception_header->handlerCount < 0) in __cxa_end_catch()
593 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/devel/llvm12/llvm-project-12.0.1.src/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/lang/zig-devel/zig-0.9.0/lib/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/lang/zig/zig-0.9.0/lib/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/devel/emscripten/emscripten-2.0.3/system/lib/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
442 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_throw()
443 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_throw()
495 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_throw()
496 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_throw()
510 if (exception_header->handlerCount < 0) in __cxa_throw()
597 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_throw()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxxabi/src/
H A Dcxa_exception.cpp116 return ++exception->handlerCount; in incrementHandlerCount()
121 return --exception->handlerCount; in decrementHandlerCount()
437 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
438 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
490 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()
491 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()
505 if (exception_header->handlerCount < 0) in __cxa_end_catch()
592 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/libstdc++-v3/libsupc++/
H A Deh_catch.cc63 int count = header->handlerCount; in __cxa_begin_catch()
72 header->handlerCount = count; in __cxa_begin_catch()
104 int count = header->handlerCount; in __cxa_end_catch()
126 header->handlerCount = count; in __cxa_end_catch()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/libstdc++-v3/libsupc++/
H A Deh_catch.cc63 int count = header->handlerCount; in __cxa_begin_catch()
72 header->handlerCount = count; in __cxa_begin_catch()
104 int count = header->handlerCount; in __cxa_end_catch()
126 header->handlerCount = count; in __cxa_end_catch()
/dports/lang/gcc48/gcc-4.8.5/libstdc++-v3/libsupc++/
H A Deh_catch.cc66 int count = header->handlerCount; in __cxa_begin_catch()
73 header->handlerCount = count; in __cxa_begin_catch()
113 int count = header->handlerCount; in __cxa_end_catch()
132 header->handlerCount = count; in __cxa_end_catch()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libstdc++-v3/libsupc++/
H A Deh_catch.cc66 int count = header->handlerCount; in __cxa_begin_catch()
73 header->handlerCount = count; in __cxa_begin_catch()
113 int count = header->handlerCount; in __cxa_end_catch()
132 header->handlerCount = count; in __cxa_end_catch()
/dports/devel/mingw32-gcc/gcc-4.8.1/libstdc++-v3/libsupc++/
H A Deh_catch.cc66 int count = header->handlerCount; in __cxa_begin_catch()
73 header->handlerCount = count; in __cxa_begin_catch()
113 int count = header->handlerCount; in __cxa_end_catch()
132 header->handlerCount = count; in __cxa_end_catch()
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/libsupc++/
H A Deh_catch.cc66 int count = header->handlerCount; in __cxa_begin_catch()
73 header->handlerCount = count; in __cxa_begin_catch()
113 int count = header->handlerCount; in __cxa_end_catch()
132 header->handlerCount = count; in __cxa_end_catch()

12345678910>>...13