HomeSort by relevance Sort by last modified time
    Searched defs:min (Results 26 - 50 of 989) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libxaac/test/
ixheaacd_fileifc.c 30 #ifndef min
31 #define min(a, b) (((a) < (b)) ? (a) : (b)) macro
138 min((int)(bufSize - *length), transport->avail_buffer);
  /external/linux-kselftest/tools/testing/selftests/timers/
set-tz.c 28 int set_tz(int min, int dst)
32 tz.tz_minuteswest = min;
61 int min, dst; local
63 min = get_tz_min();
65 printf("tz_minuteswest started at %i, dst at %i\n", min, dst);
102 set_tz(min, dst);
106 set_tz(min, dst);
  /external/ltp/testcases/kernel/syscalls/getpriority/
getpriority01.c 34 int min; member in struct:tcase
54 if (TST_RET < tc->min || TST_RET > tc->max) {
57 tc->which, TST_RET, tc->min, tc->max);
  /external/ltp/testcases/lib/
tst_random.c 42 static long rand_range(long min, long max)
44 return random() % (max - min + 1) + min;
50 long min = 0, max = 0; local
79 min = strtol(argv[2], &end, 10);
89 rval = (min > max) ? rand_range(max, min) : rand_range(min, max);
  /external/perf_data_converter/src/quipper/
dso.h 27 u32 min = 0; member in struct:quipper::DSOInfo
  /external/skia/tools/sk_app/unix/
keysym2ucs.c 820 int min = 0; local
    [all...]
  /external/skqp/tools/sk_app/unix/
keysym2ucs.c 820 int min = 0; local
    [all...]
  /external/swiftshader/src/Common/
Debug.hpp 25 #undef min macro
  /external/swiftshader/src/System/
Debug.hpp 25 #undef min macro
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
clip_by_value_op.cc 34 auto min = ctx->Input(1); variable
48 min = xla::Broadcast(min, shape.dim_sizes());
54 ctx->SetOutput(0, xla::Clamp(min, input, max));
  /external/tremolo/Tremolo/
os.h 74 #ifndef min
75 # define min(x,y) ((x)>(y)?(y):(x)) macro
  /art/test/053-wait-some/src/
Main.java 65 long min = delay - epsilon; local
68 if (elapsed < min) {
  /art/test/574-irreducible-and-constant-area/src/
Main.java 33 Math.min(a, b);
39 Math.min(a, b);
  /bionic/libc/kernel/uapi/linux/
atm_nicstar.h 27 unsigned min; member in struct:buf_nr
  /dalvik/libdex/
DexCatch.cpp 54 // Note: Signed type is important for max and min.
55 int min = 0; local
58 while (max >= min) {
59 int guess = (min + max) >> 1;
71 min = guess + 1;
DexDataMap.cpp 94 // Note: Signed type is important for max and min.
95 int min = 0; local
99 while (max >= min) {
100 int guessIdx = (min + max) >> 1;
106 min = guessIdx + 1;
  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedFakeCamera.cpp 27 #undef min macro
  /device/linaro/hikey/hifi/xaf/host-apf/playback/
xa_playback.c 180 unsigned int min; local
184 min = pcm_params_get_min(params, param);
185 if (value < min) {
187 param_unit, min, param_unit);
  /external/ImageMagick/MagickCore/
opencl.h 40 min, member in struct:_KernelProfileRecord
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
rx-includes.hpp 160 #pragma push_macro("min")
162 #undef min macro
273 #pragma pop_macro("min")
  /external/aac/libSBRenc/src/
env_bit.cpp 111 #ifndef min
112 #define min(a, b) (a < b ? a : b) macro
  /external/adhd/cras/src/dsp/tests/
crossover2_test.c 17 #ifndef min
18 #define min(a, b) ({ __typeof__(a) _a = (a); \ macro
34 crossover2_process(xo2, min(2048, count - start),
crossover_test.c 17 #ifndef min
18 #define min(a, b) ({ __typeof__(a) _a = (a); \ macro
34 crossover_process(xo, min(2048, count - start),
dcblock_test.c 15 #ifndef min
16 #define min(a, b) ({ __typeof__(a) _a = (a); \ macro
34 min(128, count - start));
drc_test.c 14 #ifndef min
15 #define min(a, b) ({ __typeof__(a) _a = (a); \ macro
36 chunk = min(DRC_PROCESS_MAX_FRAMES, frames - start);

Completed in 1133 milliseconds

12 3 4 5 6 7 8 91011>>