Searched refs:right (Results 1 - 23 of 23) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/src/signal/
H A Dsigandset.c6 int sigandset(sigset_t* dest, const sigset_t* left, const sigset_t* right) { argument
7 unsigned long i = 0, *d = (void *)dest, *l = (void *)left, *r = (void *)right;
H A Dsigorset.c6 int sigorset(sigset_t* dest, const sigset_t* left, const sigset_t* right) { argument
7 unsigned long i = 0, *d = (void *)dest, *l = (void *)left, *r = (void *)right;
/fuchsia/zircon/system/utest/qsort/
H A Dqsort.c12 uint32_t right = *(const uint32_t*)void_right; local
13 if (left < right)
15 else if (left > right)
49 uint32_t* right = test_data + idx; local
50 int c = uint32_t_cmp(left, right);
/fuchsia/zircon/system/dev/nand/skip-block/
H A Dlogical-to-physical-map.cpp21 const auto* right = static_cast<const uint32_t*>(r);
22 if (*left < *right) {
24 } else if (*left > *right) {
/fuchsia/zircon/system/host/fidl/lib/
H A Dsource_file.cpp44 auto is_in_line = [&ptr_less_equal](const StringView& left, const StringView& right) {
45 return ptr_less_equal(right.data(), left.data());
/fuchsia/zircon/third_party/ulib/musl/third_party/tre/
H A Dregcomp.c106 holds all but the last, and `right' part holds the last subexpression
110 tre_ast_node_t* right; member in struct:__anon1858
131 tre_ast_node_t* right; member in struct:__anon1860
178 tre_ast_node_t* right) {
183 return right;
186 if (!node || !right)
189 un->right = right;
190 node->num_submatches = left->num_submatches + right->num_submatches;
195 tre_ast_node_t* right) {
177 tre_ast_new_union(tre_mem_t mem, tre_ast_node_t* left, tre_ast_node_t* right) argument
194 tre_ast_new_catenation(tre_mem_t mem, tre_ast_node_t* left, tre_ast_node_t* right) argument
1273 tre_ast_node_t* right = cat->right; local
1345 tre_ast_node_t* right = uni->right; local
1476 tre_ast_node_t* right = tre_stack_pop_voidptr(stack); local
[all...]
/fuchsia/zircon/system/dev/nand/nandpart/
H A Dnandpart-utils.cpp39 [](const void* left, const void* right) {
41 const auto* right_ = static_cast<const zbi_partition_t*>(right);
/fuchsia/zircon/kernel/lib/heap/cmpctmalloc/
H A Dcmpctmalloc.c104 // Freed memory areas are eagerly coalesced with free left/right neighbors. If
105 // the new free area covers an entire OS allocation (i.e., its left and right
108 // Exception: to avoid OS free/alloc churn when right on the edge, the heap
158 // NULL in the address portion of this field. Left and right sentinels
162 // The right sentinel will have 0 in this field.
273 // will do the right thing (the carry propagates up for the round numbers
405 // OS (in which case the left/right sentinels are freed as well). |address|
460 static void FixLeftPointer(header_t* right, header_t* new_left) { argument
461 int tag = (uintptr_t)right->left & 1;
462 right
822 header_t* right = right_header(&free_area->header); local
941 header_t* right = right_header(&head->header); local
986 header_t* right = right_header(unaligned_header); local
1010 header_t* right = right_header(header); local
1023 header_t* right = right_header(header); local
[all...]
/fuchsia/zircon/system/utest/fbl/
H A Datomic_tests.cpp599 for (T right : test_values<T>) {
605 ASSERT_EQ(test_case.ordinary(&left, right),
606 test_case.member_atomic(&atomic_left, right, order),
613 ASSERT_EQ(test_case.ordinary(&left, right),
614 test_case.nonmember_atomic(&atomic_left, right, order),
621 ASSERT_EQ(test_case.ordinary(&left, right),
622 test_case.member_volatile(&atomic_left, right, order),
629 ASSERT_EQ(test_case.ordinary(&left, right),
630 test_case.nonmember_volatile(&atomic_left, right, order),
640 ASSERT_EQ(subtraction_test_case<T>.ordinary(&left, right),
740 ptrdiff_t right = 2; local
787 ptrdiff_t right = -2; local
[all...]
/fuchsia/zircon/system/utest/handle-alias/
H A Dhandle-alias.c16 static int handle_cmp(const void* left, const void* right) { argument
17 return *(const zx_handle_t*)left - *(const zx_handle_t*)right;
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Drb.h6 * bit of right-child pointers (if RB_COMPACT is defined), thus making node
15 * #define RB_COMPACT // (Optional, embed color bits in right-child pointers.)
503 a_type *right = pathp[1].node; \
504 rbtn_right_set(a_type, a_field, cnode, right); \
505 if (rbtn_red_get(a_type, a_field, right)) { \
511 rbtn_black_set(a_type, a_field, right); \
572 /* If node's successor is its right child, the following code */\
573 /* will do the wrong thing for the right child pointer. */\
635 a_type *right = rbtn_right_get(a_type, a_field, \
638 right); \
[all...]
/fuchsia/zircon/kernel/arch/arm64/
H A Drules.mk100 # Clang needs -mcmodel=kernel to tell it to use the right safe-stack ABI for
/fuchsia/zircon/third_party/lib/acpica/source/compiler/
H A Ddtparser.y108 %right <op> EXPOP_ONES_COMPLIMENT EXPOP_LOGICAL_NOT
H A Dprparser.y108 %right <op> EXPOP_ONES_COMPLIMENT EXPOP_LOGICAL_NOT
H A Dasltokens.y418 %right <i> PARSEOP_EXP_EQUALS
449 %right <i> PARSEOP_EXP_NOT
458 %right <i> PARSEOP_EXP_INDEX_RIGHT
/fuchsia/zircon/system/uapp/display-test/
H A Dvirtual-layer.cpp28 uint32_t right = fbl::min(a.x_pos + a.width, b.x_pos + b.width); local
32 if (left >= right || top >= bottom) {
38 intersection->width = right - left;
/fuchsia/zircon/make/
H A Dmacros.mk61 # The right side of the #define can be any valid C but cannot contain spaces, even
H A Dmodule.mk134 #TODO: is this right?
H A Dengine.mk529 # The right-hand sides are relative to the directory containing the manifest.
/fuchsia/zircon/kernel/arch/x86/
H A Drules.mk138 # Clang needs -mcmodel=kernel to tell it to use the right safe-stack ABI for
/fuchsia/zircon/system/ulib/intel-hda/include/intel-hda/utils/
H A Dcodec-commands.h56 // right now.
184 static inline constexpr CodecVerb GET_AMPLIFIER_GAIN_MUTE(bool input, bool right, uint8_t ndx = 0) {
186 (!right ? (1u << 13) : 0) |
/fuchsia/zircon/system/host/fidl/include/fidl/
H A Dflat_ast.h27 bool operator()(const T* left, const T* right) const { return *left < *right; }
/fuchsia/zircon/system/utest/core/vmar/
H A Dvmar.cpp945 uint32_t right = test_rights[i][0]; local
949 ASSERT_EQ(zx_handle_duplicate(vmar, right, &new_h), ZX_OK);
1000 uint32_t right = test_rights[i][0]; local
1004 ASSERT_EQ(zx_handle_duplicate(vmo, right | ZX_RIGHT_MAP, &new_h), ZX_OK);
1068 // Should fail since region[0] does not have the right perms
1176 // Unmap from the right
1238 // Unmap from the right of the first and the left of the second
1254 // Unmap all of the left one and some of the right one
1281 // Unmap all of the left one and some of the right one
1535 // Protect from the right
[all...]

Completed in 234 milliseconds