Searched defs:operation (Results 1 - 25 of 124) sorted by relevance

12345

/external/iptables/include/linux/netfilter/
H A Dxt_CHECKSUM.h17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
H A Dxt_ecn.h23 __u8 operation; member in struct:xt_ecn_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CHECKSUM.h17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
H A Dxt_ecn.h25 __u8 operation; member in struct:xt_ecn_info
/external/boringssl/src/crypto/dh/
H A Ddh_asn1.c64 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
66 if (operation == ASN1_OP_NEW_PRE) {
72 } else if (operation == ASN1_OP_FREE_PRE) {
/external/boringssl/src/crypto/pkcs8/
H A Dp8_pkey.c63 /* Minor tweak to operation: zero private key data */
64 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
67 if (operation == ASN1_OP_FREE_PRE) {
/external/boringssl/src/crypto/x509/
H A Dx_req.c81 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
86 if(operation == ASN1_OP_NEW_POST) {
H A Dx_x509.c91 static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
96 switch(operation) {
H A Dx_crl.c118 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
124 switch(operation) {
233 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
241 switch(operation)
H A Dx_pubkey.c70 /* Minor tweak to operation: free up EVP_PKEY */
71 static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
74 if (operation == ASN1_OP_FREE_POST)
/external/boringssl/src/crypto/dsa/
H A Ddsa_asn1.c67 static int dsa_sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
69 if (operation != ASN1_OP_NEW_PRE) {
92 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
94 switch (operation) {
/external/boringssl/src/crypto/rsa/
H A Drsa_asn1.c65 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
67 if (operation == ASN1_OP_NEW_PRE) {
73 } else if (operation == ASN1_OP_FREE_PRE) {
/external/libvorbis/doc/
H A D03-codebook.tex18 \subsubsection{Bitwise operation}
195 An 'end of packet' during any read operation in the above steps is
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_ECN.h24 __u8 operation; /* bitset of operations */ member in struct:ipt_ECN_info
/external/kernel-headers/original/uapi/linux/netfilter_ipv4/
H A Dipt_ECN.h24 __u8 operation; /* bitset of operations */ member in struct:ipt_ECN_info
/external/proguard/src/proguard/evaluation/value/
H A DCompositeDoubleValue.java24 * This DoubleValue represents the result of a binary operation on two double
39 private final byte operation; field in class:CompositeDoubleValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeDoubleValue)object).operation &&
79 return "("+doubleValue1+((char)operation)+doubleValue2+")";
47 CompositeDoubleValue(DoubleValue doubleValue1, byte operation, DoubleValue doubleValue2) argument
H A DCompositeFloatValue.java24 * This FloatValue represents the result of a binary operation on two float
39 private final byte operation; field in class:CompositeFloatValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeFloatValue)object).operation &&
79 return "("+floatValue1+((char)operation)+floatValue2+")";
47 CompositeFloatValue(FloatValue floatValue1, byte operation, FloatValue floatValue2) argument
H A DCompositeIntegerValue.java24 * This IntegerValue represents the result of a binary operation on two integer
45 private final byte operation; field in class:CompositeIntegerValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeIntegerValue)object).operation &&
85 return "("+integerValue1+((char)operation)+integerValue2+")";
53 CompositeIntegerValue(IntegerValue integerValue1, byte operation, IntegerValue integerValue2) argument
H A DCompositeLongValue.java24 * This LongValue represents the result of a binary operation on two long
45 private final byte operation; field in class:CompositeLongValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeLongValue)object).operation &&
85 return "("+longValue1+((char)operation)+longValue2+")";
53 CompositeLongValue(LongValue longValue1, byte operation, Value longValue2) argument
/external/e2fsprogs/e2fsck/
H A Dehandler.c20 static const char *operation; variable
53 if (operation)
55 error_message(error), operation); local
102 if (operation)
104 error_message(error), operation); local
117 const char *ret = operation;
119 operation = op;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAlarmManager.java24 public void set(int type, long triggerAtTime, PendingIntent operation) { argument
25 internalSet(type, triggerAtTime, 0L, operation);
29 public void setRepeating (int type, long triggerAtTime, long interval, PendingIntent operation){ argument
30 internalSet(type, triggerAtTime, interval, operation);
33 private void internalSet(int type, long triggerAtTime, long interval, PendingIntent operation) { argument
34 Intent intent = shadowOf(operation).getSavedIntent();
36 Intent scheduledIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
42 scheduledAlarms.add(new ScheduledAlarm(type, triggerAtTime, interval, operation));
83 final Intent alarmIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
98 public PendingIntent operation; field in class:ShadowAlarmManager.ScheduledAlarm
100 ScheduledAlarm(int type, long triggerAtTime, PendingIntent operation) argument
104 ScheduledAlarm(int type, long triggerAtTime, long interval, PendingIntent operation) argument
[all...]
/external/fio/
H A Dprinting.c15 static void begin_print(GtkPrintOperation *operation, argument
26 gtk_print_operation_set_n_pages(operation, 1);
29 static void results_draw_page(GtkPrintOperation *operation, argument
86 static void results_print_done(GtkPrintOperation *operation, argument
95 gtk_print_operation_get_error(operation, &print_error);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_masks.c37 void vegaMask(VGHandle mask, VGMaskOperation operation, argument
48 if (operation < VG_CLEAR_MASK || operation > VG_SUBTRACT_MASK) {
56 if (operation == VG_CLEAR_MASK) {
58 } else if (operation == VG_FILL_MASK) {
62 mask_using_image(image, operation, x, y, width, height);
65 mask_using_layer(layer, operation, x, y, width, height);
115 VGMaskOperation operation)
127 if (operation < VG_CLEAR_MASK ||
128 operation > VG_SUBTRACT_MAS
113 vegaRenderToMask(VGPath path, VGbitfield paintModes, VGMaskOperation operation) argument
139 mask_render_to(handle_to_path(path), paintModes, operation); local
[all...]
/external/bison/lib/
H A Dsigprocmask.c222 sigprocmask (int operation, const sigset_t *set, sigset_t *old_set) argument
233 switch (operation)
/external/boringssl/src/crypto/cipher/
H A Dcipher_test.cc225 } operation = kBoth; local
229 operation = kEncrypt;
231 operation = kDecrypt;
233 t->PrintLine("Unknown operation: '%s'.", str.c_str());
238 // By default, both directions are run, unless overridden by the operation.
239 if (operation != kDecrypt &&
244 if (operation != kEncrypt &&

Completed in 719 milliseconds

12345